with??p?as?(
創(chuàng)新互聯(lián)公司堅(jiān)持“要么做到,要么別承諾”的工作理念,服務(wù)領(lǐng)域包括:網(wǎng)站設(shè)計(jì)、成都做網(wǎng)站、企業(yè)官網(wǎng)、英文網(wǎng)站、手機(jī)端網(wǎng)站、網(wǎng)站推廣等服務(wù),滿足客戶于互聯(lián)網(wǎng)時代的寒亭網(wǎng)站設(shè)計(jì)、移動媒體設(shè)計(jì)的需求,幫助企業(yè)找到有效的互聯(lián)網(wǎng)解決方案。努力成為您成熟可靠的網(wǎng)絡(luò)建設(shè)合作伙伴!
select??t1.id,t1.content,t1.process_name,t1.pid,?t1.process_num?from?(
select?t.*,?row_number()?over(partition?by?t.pid?order?by?t.process_num?desc?)?ord
tb_process?t?)?t1??where??ord?=1)
select?c.*,p.*?from?tb_case?c,p?where?c.id=p.pid;
--請采納
select distinct 字段名 from 表名;
或者
select 字段名 from 表名 group by 字段名;
第二種寫法,group by 中的字段名需要與select的字段名一致。
select * from table1
where (需要去重的字段) in
(select 需要去重的字段 from table1 group by 需要去重的字段 having count(*) 1)
and id in (select min(rowid) from table1 group by 需要去重的字段 having count(*)1)
1。用rowid方法
據(jù)據(jù)oracle帶的rowid屬性,進(jìn)行判斷,是否存在重復(fù),語句如下:
查數(shù)據(jù):
select * from table1 a where rowid
!=(select max(rowid)
from table1 b where a.name1=b.name1 and
a.name2=b.name2......)
刪數(shù)據(jù):
delete from table1 a where rowid
!=(select max(rowid)
from table1 b where a.name1=b.name1 and
a.name2=b.name2......)
2.group by方法
查數(shù)據(jù):
select count(num), max(name) from student --列出重復(fù)的記錄數(shù),并列出他的name屬性
group by num
having count(num) 1 --按num分組后找出表中num列重復(fù),即出現(xiàn)次數(shù)大于一次
刪數(shù)據(jù):
delete from student
group by num
having count(num) 1
這樣的話就把所有重復(fù)的都刪除了。
3.用distinct方法 -對于小的表比較有用
create table table_new as select distinct *
from table1 minux
truncate table table1;
insert into table1 select * from table_new;
select 客戶名稱,客戶ID from A
union
select 客戶名稱,客戶ID from B
--------------
如果還有其他字段用下面這個
select客戶名稱,客戶ID,其他字段
from (select 客戶名稱,客戶ID ,其他字段,
row_number() over (partition by 客戶名稱,客戶ID order by 其他某個字段) rn
from (select 客戶名稱,客戶ID, 其他字段 from A
union
select 客戶名稱,客戶ID,其他字段 from B
)
)
where rn=1;
select testid,count(1) from testtable group by testid having count(1)1
count(1)就是重復(fù)在數(shù)量
如何查詢重復(fù)的數(shù)據(jù)
select 字段1,字段2,count(*) from 表名 group by 字段1,字段2 having count(*) 1
PS:將上面的號改為=號就可以查詢出沒有重復(fù)的數(shù)據(jù)了。
Oracle刪除重復(fù)數(shù)據(jù)的SQL(刪除所有):
刪除重復(fù)數(shù)據(jù)的基本結(jié)構(gòu)寫法:
想要刪除這些重復(fù)的數(shù)據(jù),可以使用下面語句進(jìn)行刪除
delete from 表名 a where 字段1,字段2 in(select 字段1,字段2,count(*) from 表名 group by 字段1,字段2 having count(*) 1)
上面的SQL注意:語句非常簡單,就是將查詢到的數(shù)據(jù)刪除掉。不過這種刪除執(zhí)行的效率非常低,對于大數(shù)據(jù)量來說,可能會將數(shù)據(jù)庫吊死。
建議先將查詢到的重復(fù)的數(shù)據(jù)插入到一個臨時表中,然后對進(jìn)行刪除,這樣,執(zhí)行刪除的時候就不用再進(jìn)行一次查詢了。如下:
CREATE TABLE 臨時表 AS (select 字段1,字段2,count(*) from 表名 group by 字段1,字段2 having count(*) 1)
上面這句話就是建立了臨時表,并將查詢到的數(shù)據(jù)插入其中。
下面就可以進(jìn)行這樣的刪除操作了:
delete from 表名 a where 字段1,字段2 in (select 字段1,字段2 from 臨時表);