把所有字段中的標題字段有重復的就刪掉,只留一條。
首先保證你的表有唯一能標識該行的字段,如果沒有建議臨時添加一個(比如自動編號的字段,假設字段名為id)
delete
from xinwen
where id not in(select max(id) from xinwen group by biaoti)
Access數(shù)據(jù)庫重復記錄刪除器(刪除數(shù)據(jù)庫重復數(shù)據(jù)工具)全程傻瓜化處理,可以快速的幫助您將access數(shù)據(jù)庫中的重復記錄刪除并保留1條,軟件會自動備份待處理的數(shù)據(jù)庫。
假如某個表table1有 A B C D E五個字段 建個臨時表未temp 字段結(jié)構(gòu)與 table1一樣,可以這樣delete from tempinsert into temp select distinct a,b,c,d,e from table1delete from table1insert into table1 select * from temp 這樣就把重復的排除了
- PC官方版
- 安卓官方手機版
- IOS官方手機版