欢迎来到天天文库
浏览记录
ID:14118633
大小:28.50 KB
页数:4页
时间:2018-07-26
《oracle删除重复记录》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、oracle删除重复记录.txt时尚,就是让年薪八千的人看上去像年薪十万。我们总是要求男人有孩子一样的眼神,父亲一样的能力。一分钟就可以遇见一个人,一小时喜欢上一个人,一天爱上一个人,但需要花尽一生的时间去忘记一个人。比如现在有一人员表(表名:peosons)若想将姓名、身份证号、住址这三个字段完全相同的记录查询出来selectp1.*frompersonsp1,personsp2wherep1.id<>p2.idandp1.cardid=p2.cardidandp1.pname=p2.pnameandp1.address=p2.address可以实现上述效果.几个删除重复记录的SQL语
2、句1.用rowid方法2.用groupby方法3.用distinct方法1。用rowid方法据据oracle带的rowid属性,进行判断,是否存在重复,语句如下:查数据:select*fromtable1awhererowid!=(selectmax(rowid)fromtable1bwherea.name1=b.name1anda.name2=b.name2......)删数据:deletefromtable1awhererowid!=(selectmax(rowid)fromtable1bwherea.name1=b.name1anda.name2=b.name2......)2.g
3、roupby方法查数据: selectcount(num),max(name)fromstudent--列出重复的记录数,并列出他的name属性 groupbynum havingcount(num)>1--按num分组后找出表中num列重复,即出现次数大于一次删数据: deletefromstudent groupbynum havingcount(num)>1 这样的话就把所有重复的都删除了。3.用distinct方法-对于小的表比较有用createtabletable_newasselectdistinct*fromtable1minuxtruncatetableta
4、ble1;insertintotable1select*fromtable_new;查询及删除重复记录的方法大全1、查找表中多余的重复记录,重复记录是根据单个字段(peopleId)来判断select*frompeoplewherepeopleIdin(selectpeopleIdfrompeoplegroupbypeopleIdhavingcount(peopleId)>1)2、删除表中多余的重复记录,重复记录是根据单个字段(peopleId)来判断,只留有rowid最小的记录deletefrompeoplewherepeopleIdin(selectpeopleIdfrompeopl
5、egroupbypeopleIdhavingcount(peopleId)>1)androwidnotin(selectmin(rowid)frompeoplegroupbypeopleIdhavingcount(peopleId)>1)3、查找表中多余的重复记录(多个字段)select*fromvitaeawhere(a.peopleId,a.seq)in(selectpeopleId,seqfromvitaegroupbypeopleId,seqhavingcount(*)>1)4、删除表中多余的重复记录(多个字段),只留有rowid最小的记录deletefromvitaeawher
6、e(a.peopleId,a.seq)in(selectpeopleId,seqfromvitaegroupbypeopleId,seqhavingcount(*)>1)androwidnotin(selectmin(rowid)fromvitaegroupbypeopleId,seqhavingcount(*)>1)5、查找表中多余的重复记录(多个字段),不包含rowid最小的记录select*fromvitaeawhere(a.peopleId,a.seq)in(selectpeopleId,seqfromvitaegroupbypeopleId,seqhavingcount(*)>
7、1)androwidnotin(selectmin(rowid)fromvitaegroupbypeopleId,seqhavingcount(*)>1)(二)比方说在A表中存在一个字段“name”,而且不同记录之间的“name”值有可能会相同,现在就是需要查询出在该表中的各记录之间,“name”值存在重复的项;SelectName,Count(*)FromAGroupByNameHavingCount(*)>1如果还查性别也相同大
此文档下载收益归作者所有