查詢/刪除重複的資料(單個欄位和多個欄位條件)

abin1703發表於2020-11-21

oracle查詢/刪除重複的資料(單個欄位和多個欄位條件)

單個欄位:
--查詢重複的全部資料(單個欄位)
思路:
1.根據欄位tid分組,數量大於1的表示tid欄位有重複的資料;
2.根據1查詢出來的tid資料為條件,再查詢全部重複的資料。
SQL:
 

select t.*from test1108 twhere t.tid in (select tidfrom test1108group by tidhaving count(tid) > 1);

--刪除多餘的重複資料(單個欄位),重複的資料保留rowid最小的行
思路:
1.根據欄位tid分組,數量大於1的表示有重複資料;
2.因表中每行都有一個偽列rowid,查詢出重複資料中最小的rowid;
3.根據1、2的並行條件重複的資料,但保留重複資料中rowid最小的值。
SQL:
 

delete from test1108 twhere t.tid in (select tidfrom test1108group by tidhaving count(tid) > 1)and rowid not in (select min(rowid)from test1108group by tidhaving count(tid) >1);

多個欄位:
--查詢重複的全部資料(多個欄位)
思路:
1.根據欄位tid,tname分組,數量大於1的表示欄位tid,tname有重複的資料;
2.根據1查詢出來的tid,tname資料為條件,再查詢全部重複的資料。
SQL:
 

select * from test112101 twhere (t.tid,t.tname) in (select tid,tnamefrom test112101 t1group by t1.tid,t1.tname having count(*) >1);

--刪除多餘的重複資料(多個欄位),重複的資料保留rowid最小的行
思路:
1.根據欄位tid,tname分組,數量大於1的表示有重複資料;
2.因表中每行都有一個偽列rowid,查詢出重複資料中最小的rowid;
3.根據1、2的並行條件重複的資料,但保留重複資料中rowid最小的值。
SQL:
 

delete from test112101 twhere (t.tid,t.tname) in (select tid,tnamefrom test112101 t1group by t1.tid,t1.tname having count(*) >1)and rowid not in(select min(rowid) from test112101group by tid,tname having count(1)> 1);


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/30345407/viewspace-2735848/,如需轉載,請註明出處,否則將追究法律責任。

相關文章