首頁  >  文章  >  資料庫  >  歸納整理oracle資料庫去除重複資料常用的方法

歸納整理oracle資料庫去除重複資料常用的方法

WBOY
WBOY轉載
2022-08-22 17:59:303308瀏覽

這篇文章為大家帶來了關於Oracle的相關知識,其中主要介紹了關於資料清理的時候常常會清除表中的重複的資料,那麼在oracle中怎麼處理呢?下面一起來看一下,希望對大家有幫助。

歸納整理oracle資料庫去除重複資料常用的方法

推薦教學:《Oracle影片教學

建立測試資料

create table nayi224_180824(col_1 varchar2(10), col_2 varchar2(10), col_3 varchar2(10));
insert into nayi224_180824
select 1, 2, 3 from dual union all
select 1, 2, 3 from dual union all
select 5, 2, 3 from dual union all
select 10, 20, 30 from dual ;
commit;
select*from nayi224_180824;
##2 #3123#5231020#30
COL_1 COL_2 COL_3
1
針對指定列,查出去重後的結果集


distinct

select distinct t1.* from nayi224_180824 t1;

COL_1COL_2#COL_3 1020#30123523
方法限制很大,因為它只能對全部查詢的列做去重。如果我想對col_2,col3去重,那我的結果集中就只能有col_2,col_3列,而不能有col_1列。

select distinct t1.col_2, col_3 from nayi224_180824 t1

COL_2COL_3##220#不過它也是最簡單易懂的寫法。
#3
30

row_number()

select *
  from (select t1.*,
               row_number() over(partition by t1.col_2, t1.col_3 order by 1) rn
          from nayi224_180824 t1) t1
 where t1.rn = 1
;

COL_1110 #寫法上要麻煩不少,但是有更大的彈性。
COL_2 COL_3 #RN
2 3 1
20 30 1

針對指定列,找出所有重複的行

count having

select *
  from nayi224_180824 t
 where (t.col_2, t.col_3) in (select t1.col_2, t1.col_3
                                from nayi224_180824 t1
                               group by t1.col_2, t1.col_3
                              having count(1) > 1)

COL_1##COL_2COL_31#2322#要查兩次表,效率會比較低。不推薦。 count over
## 1
3 5
3
select *
  from (select t1.*,
               count(1) over(partition by t1.col_2, t1.col_3) rn
          from nayi224_180824 t1) t1
 where t1.rn > 1
;

COL_1COL_2##COL_3#RN1233#1233#52##3只需要查一次表,推薦。 刪除所有重複的行
delete from nayi224_180824 t
 where t.rowid in (
                   select rid
                     from (select t1.rowid rid,
                                   count(1) over(partition by t1.col_2, t1.col_3) rn
                              from nayi224_180824 t1) t1
                    where t1.rn > 1);
就是上面的語句稍作修改。
#3

刪除重複資料並保留一條

分析函數法

delete from nayi224_180824 t
 where t.rowid in (select rid
                     from (select t1.rowid rid,
                                  row_number() over(partition by t1.col_2, t1.col_3 order by 1) rn
                             from nayi224_180824 t1) t1
                    where t1.rn > 1);

擁有分析函數一貫的彈性高的特徵。可以為所欲為的分組,並透過改變orderby從句來達到像」保留最大id「這樣的要求。

group by

delete from nayi224_180824 t
 where t.rowid not in
       (select max(rowid) from nayi224_180824 t1 group by t1.col_2, t1.col_3);

犧牲了一部分靈活性,換來了更高的效率。

推薦教學:《

Oracle影片教學

以上是歸納整理oracle資料庫去除重複資料常用的方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:jb51.net。如有侵權,請聯絡admin@php.cn刪除