Access數(shù)據(jù)庫一鍵去重復(fù)工具是一款傻瓜式的快速數(shù)據(jù)去重軟件,該軟件能夠?qū)ccess數(shù)據(jù)庫中重復(fù)字段刪除,還支持SQL語句輔助搜索,處理的時(shí)候無需打開Access,操作輕松簡單,功能強(qiáng)大全面,使用后可以幫助用戶更輕松便捷的清除數(shù)據(jù)庫數(shù)據(jù)。
使用說明
1、運(yùn)行后首先選擇要?jiǎng)h除的MDB數(shù)據(jù)文件。
2、設(shè)置要?jiǎng)h除的字段和列表,如果有需要?jiǎng)t可以輸入SQL語句。
假如某個(gè)表table1有 A B C D E五個(gè)字段 建個(gè)臨時(shí)表未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ù)的排除了。