把所有字段中的标题字段有重复的就删掉,只留一条。
首先保证你的表有唯一能标识该行的字段,如果没有建议临时添加一个(比如自动编号的字段,假设字段名为id)
delete
from xinwen
where id not in(select max(id) from xinwen group by biaoti)
access数据库重复记录删除器(删除数据库重复数据工具)全程傻瓜化处理,可以快速的帮助您将access数据库中的重复记录删除并保留1条,软件会自动备份待处理的数据库。
假如某个表table1有 A B C D E五个字段 建个临时表未temp 字段结构与 table1一样,可以这样delete from tempinsert into temp select distinct a,b,c,d,e from table1delete from table1insert into table1 select * from temp 这样就把重复的排除了