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