資源描述:
《查詢及刪除重復(fù)記錄的方法2》由會員上傳分享,免費(fèi)在線閱讀,更多相關(guān)內(nèi)容在行業(yè)資料-天天文庫。
1、查詢及刪除重復(fù)記錄的方法(一)1、查找表中多余的重復(fù)記錄,重復(fù)記錄是根據(jù)單個(gè)字段(peopleId)來判斷select*frompeoplewherepeopleIdin(select??peopleId??from??people??group??by??peopleId??having??count(peopleId)>1)2、刪除表中多余的重復(fù)記錄,重復(fù)記錄是根據(jù)單個(gè)字段(peopleId)來判斷,只留有rowid最小的記錄deletefrompeoplewherepeopleId??in(select??peopleId??frompeo
2、ple??group??by??peopleId??having??count(peopleId)>1)androwidnotin(selectmin(rowid)from??people??groupbypeopleId??havingcount(peopleId)>1)3、查找表中多余的重復(fù)記錄(多個(gè)字段)select*fromvitaeawhere(a.peopleId,a.seq)in??(selectpeopleId,seqfromvitaegroupbypeopleId,seq??havingcount(*)>1)4、刪除表中多余的重
3、復(fù)記錄(多個(gè)字段),只留有rowid最小的記錄deletefromvitaeawhere(a.peopleId,a.seq)in??(selectpeopleId,seqfromvitaegroupbypeopleId,seqhavingcount(*)>1)androwidnotin(selectmin(rowid)fromvitaegroupbypeopleId,seqhavingcount(*)>1)5、查找表中多余的重復(fù)記錄(多個(gè)字段),不包含rowid最小的記錄select*fromvitaeawhere(a.peopleId,a.se
4、q)in??(selectpeopleId,seqfromvitaegroupbypeopleId,seqhavingcount(*)>1)androwidnotin(selectmin(rowid)fromvitaegroupbypeopleId,seqhavingcount(*)>1)(二)比方說在A表中存在一個(gè)字段“name”,而且不同記錄之間的“name”值有可能會相同,現(xiàn)在就是需要查詢出在該表中的各記錄之間,“name”值存在重復(fù)的項(xiàng);SelectName,Count(*)FromAGroupByNameHavingCount(*)>1
5、如果還查性別也相同大則如下:SelectName,sex,Count(*)FromAGroupByName,sexHavingCount(*)>1(三)方法一declare@maxinteger,@idintegerdeclarecur_rowscursorlocalforselect主字段,count(*)from表名groupby主字段havingcount(*)>;1opencur_rowsfetchcur_rowsinto@id,@maxwhile@@fetch_status=0beginselect@max=@max-1setrowco
6、unt@maxdeletefrom表名where主字段=@idfetchcur_rowsinto@id,@maxendclosecur_rowssetrowcount0 方法二 有兩個(gè)意義上的重復(fù)記錄,一是完全重復(fù)的記錄,也即所有字段均重復(fù)的記錄,二是部分關(guān)鍵字段重復(fù)的記錄,比如Name字段重復(fù),而其他字段不一定重復(fù)或都重復(fù)可以忽略?! ?、對于第一種重復(fù),比較容易解決,使用selectdistinct*fromtableName 就可以得到無重復(fù)記錄的結(jié)果集。 如果該表需要刪除重復(fù)的記錄(重復(fù)記錄保留1條),可以按以下方法刪除selec
7、tdistinct*into#TmpfromtableNamedroptabletableNameselect*intotableNamefrom#Tmpdroptable#Tmp 發(fā)生這種重復(fù)的原因是表設(shè)計(jì)不周產(chǎn)生的,增加唯一索引列即可解決?! ?、這類重復(fù)問題通常要求保留重復(fù)記錄中的第一條記錄,操作方法如下 假設(shè)有重復(fù)的字段為Name,Address,要求得到這兩個(gè)字段唯一的結(jié)果集selectidentity(int,1,1)asautoID,*into#TmpfromtableNameselectmin(autoID)asautoIDi
8、nto#Tmp2from#TmpgroupbyName,autoIDselect*from#TmpwhereautoIDin(selec