日期:2014-05-16  浏览次数:20959 次

access 过滤重复
我一个数据的某个表 的某个字段会有重复的
我希望能把这个字段重复的信息找出来 并删除 保留一条

能否按某个字段做条件检查重复
找出重复的数据后手动删除
具体怎么操作

------解决方案--------------------
select * from taskrecord a
where exists (select 1 from taskrecord where serno=a.serno and id <>a.id)