Access數(shù)據(jù)庫重復(fù)記錄刪除器是一款非常好用的軟件,顧名思義,Access數(shù)據(jù)庫重復(fù)記錄刪除器全程傻瓜化處理,可以快速的幫助您將access數(shù)據(jù)庫中的重復(fù)記錄刪除并保留1條,軟件會自動備份待處理的數(shù)據(jù)庫,最新支持三種去重復(fù)記錄方式。
使用說明
把所有字段中的標(biāo)題字段有重復(fù)的就刪掉,只留一條。
首先保證你的表有唯一能標(biāo)識該行的字段,如果沒有建議臨時添加一個(比如自動編號的字段,假設(shè)字段名為id)
delete
from xinwen
where id not in(select max(id) from xinwen group by biaoti)
access數(shù)據(jù)庫重復(fù)記錄刪除器(刪除數(shù)據(jù)庫重復(fù)數(shù)據(jù)工具)全程傻瓜化處理,可以快速的幫助您將access數(shù)據(jù)庫中的重復(fù)記錄刪除并保留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 這樣就把重復(fù)的排除了