最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

oracle 刪除重復(fù)數(shù)據(jù)

 更新時(shí)間:2009年07月22日 08:56:48   投稿:mdxy-dxy  
我們可能會(huì)出現(xiàn)這種情況,表里面的數(shù)據(jù)重復(fù),那么,如何對(duì)重復(fù)的數(shù)據(jù)進(jìn)行刪除呢?

重復(fù)的數(shù)據(jù)可能有這樣兩種情況,第一種: 表中只有某些字段一樣,第二種是兩行記錄完全一樣。
一、對(duì)于部分字段重復(fù)數(shù)據(jù)的刪除
1.查詢(xún)重復(fù)的數(shù)據(jù)  
select 字段1,字段2, count(*) from 表名 group by 字段1,字段2 having count(*) > 1   
例:Select owner from dba_tables group by owner having count(*)>1;
Select owner from dba_tables group by owner having count(*)=1; //查詢(xún)出沒(méi)有重復(fù)的數(shù)據(jù)  
2.刪除重復(fù)的數(shù)據(jù)
delete from 表名 a where 字段1,字段2 in (select 字段1,字段2,count(*) from 表名 group by 字段1,字段2 having count(*) > 1)
這種刪除執(zhí)行的效率非常低,對(duì)于大數(shù)據(jù)量來(lái)說(shuō),可能會(huì)將數(shù)據(jù)庫(kù)吊死。
另一種高效率的方法是先將查詢(xún)到的重復(fù)的數(shù)據(jù)插入到一個(gè)臨時(shí)表中,然后再進(jìn)行刪除。
CREATE TABLE 臨時(shí)表 AS
(
select 字段1,字段2, count(*) as row_num
from 表名
group by 字段1,字段2
having count(*) > 1
);
  上面這句話(huà)就是建立了臨時(shí)表,并將查詢(xún)到的數(shù)據(jù)插入其中。
  下面就可以進(jìn)行這樣的刪除操作了:
delete from 表名 a
where 字段1,字段2 in (select 字段1,字段2 from 臨時(shí)表);   
3.保留重復(fù)數(shù)據(jù)中最新的一條記錄
在Oracle中,rowid是隱藏字段,用來(lái)唯一標(biāo)識(shí)每條記錄。所以,只要保留重復(fù)數(shù)據(jù)中rowid最大的一條記錄就可以了?! ?
查詢(xún)重復(fù)數(shù)據(jù):
select a.rowid,a.* from 表名 a
where a.rowid != (
select max(b.rowid) from 表名 b
where a.字段1 = b.字段1 and a.字段2 = b.字段2 );   
例:selete from dba_tables a
where a.rowid!=(
select max(rowid) from test b
where a.owner=b.owner);
  刪除重復(fù)數(shù)據(jù),只保留最新的一條數(shù)據(jù):
delete from 表名 a
where a.rowid != (
select max(b.rowid) from 表名 b
where a.字段1 = b.字段1 and a.字段2 = b.字段2 )
  使用臨時(shí)表實(shí)現(xiàn)高效查詢(xún)
create table 臨時(shí)表 as
(select a.字段1, a.字段2, MAX(a.ROWID) as dataid from 正式表 a
GROUP BY a.字段1,a.字段2);
delete from 表名 a
where a.rowid !=
( select b.dataid from 臨時(shí)表 b
where a.字段1 = b.字段1 and
a.字段2 = b.字段2 );
commit;
  二、對(duì)于完全重復(fù)記錄的刪除
  對(duì)于表中兩行記錄完全一樣的情況,可以用下面語(yǔ)句獲取到去掉重復(fù)數(shù)據(jù)后的記錄:
select distinct * from 表名
可以將查詢(xún)的記錄放到臨時(shí)表中,然后再將原來(lái)的表記錄刪除,最后將臨時(shí)表的數(shù)據(jù)導(dǎo)回原來(lái)的表中。如下:
CREATE TABLE 臨時(shí)表 AS (select distinct * from 表名);
drop table 正式表;
insert into 正式表 (select * from 臨時(shí)表);
drop table 臨時(shí)表;   假如想刪除一個(gè)表的重復(fù)數(shù)據(jù),可以先建一個(gè)臨時(shí)表,將去掉重復(fù)數(shù)據(jù)后的數(shù)據(jù)導(dǎo)入到臨時(shí)表,然后在從臨時(shí)表將數(shù)據(jù)導(dǎo)入正式表中,如下: INSERT INTO t_table_bak
select distinct * from t_table;

以下是補(bǔ)充:

Oracle  數(shù)據(jù)庫(kù)中查詢(xún)重復(fù)數(shù)據(jù):

select * from employee group by emp_name having count (*)>1;

 Oracle  查詢(xún)可以刪除的重復(fù)數(shù)據(jù)

select t1.* from employee t1 where (t1.emp_name) in (SELECT t2.emp_name from employee t2 group by emp_name having count (*)>1) and t1.emp_id not in (select min(t3.emp_id) from employee t3 group by emp_name having count (*)>1);

Oracle 刪除重復(fù)數(shù)據(jù)

delete from employee t1 where (t1.emp_name) in (SELECT t2.emp_name from employee t2 group by emp_name having count (*)>1) and t1.emp_id not in (select min(t3.emp_id) from employee t3 group by emp_name having count (*)>1);

相關(guān)文章

最新評(píng)論

汤原县| 凌海市| 东兰县| 宁德市| 沁水县| 金沙县| 辽源市| 习水县| 原平市| 舒兰市| 广安市| 建阳市| 十堰市| 巫山县| 定陶县| 南陵县| 蚌埠市| 泾源县| 抚远县| 阿拉尔市| 白山市| 东源县| 冷水江市| 沙洋县| 藁城市| 金乡县| 拜泉县| 故城县| 抚顺市| 科尔| 沅江市| 连江县| 讷河市| 曲麻莱县| 安乡县| 梅河口市| 资兴市| 陈巴尔虎旗| 德州市| 隆子县| 永和县|