select testid,count(1) from testtable group by testid having count(1)1
專注于為中小企業(yè)提供網(wǎng)站制作、成都網(wǎng)站設(shè)計服務(wù),電腦端+手機(jī)端+微信端的三站合一,更高效的管理,為中小企業(yè)盈江免費做網(wǎng)站提供優(yōu)質(zhì)的服務(wù)。我們立足成都,凝聚了一批互聯(lián)網(wǎng)行業(yè)人才,有力地推動了成百上千家企業(yè)的穩(wěn)健成長,幫助中小企業(yè)通過網(wǎng)站建設(shè)實現(xiàn)規(guī)模擴(kuò)充和轉(zhuǎn)變。
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 臨時表);
方法一:可以通過group by 進(jìn)行分組。\x0d\x0asql:select username,count(username) from tablename grop by username;\x0d\x0a解釋:以上sql就是通過分組函數(shù)讀取出tablename表中username的值和每個不同值的統(tǒng)計個數(shù)。\x0d\x0a方法二:可以通過distinct函數(shù) 進(jìn)行去重查詢。\x0d\x0asql:select distinct username from tablename\x0d\x0a解釋:本sql就是查詢出所有的tablename表中的username值(不重復(fù))。
(1)查找有沒有重復(fù)數(shù)據(jù)可以用去重統(tǒng)計(distanct+count)和本身的統(tǒng)計數(shù)據(jù)(count)對比,二者數(shù)據(jù)不同,那么就說明有重復(fù)數(shù)據(jù)。
(2)重復(fù)數(shù)據(jù)有哪些,可以用全體分組(group by+count)只要不等于1的就是就是重復(fù)數(shù)據(jù)
(3)在所有數(shù)據(jù)中顯示重復(fù)數(shù)據(jù)。要用到開窗函數(shù)rank()over(group by 全體字段),這樣可以給每條數(shù)據(jù)的前面都加上編號,也就是說只要前面的編號不是1,那么這條數(shù)據(jù)就是重復(fù)的。
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 distinct clom_name from table_name --利用distinct對列clom_name去重
select clom_name from table_name a
where rowid =(select max(b.rowid) from table_name b where a.clom_name=b.clom_name);
--利用rowid唯一標(biāo)識的特性對列clom_name 去重