有兩個意義上的重覆記錄,一是完全重複的記錄,也即所有欄位均重複的記錄,二是部分關鍵字段重複的記錄,比如name欄位重複,而其他欄位不一定重複或都重複可以忽略。
1、對於第一種重複,比較容易解決,使用
select distinct * from tablename
就可以得到無重覆記錄的結果集。
如果該錶需要刪除重複的記錄(重覆記錄保留1條),可以按以下方法刪除
select distinct * into #tmp from tablename
drop table tablename
select * into tablename from #tmp
drop table #tmp
發生這種重複的原因是表設計不周產生的,增加唯一索引列即可解決。
2、這類重複問題通常要求保留重覆記錄中的第一條記錄,操作方法如下
假設有重複的字段為name,address,要求得到這兩個字段唯一的結果集
select identity(int,1,1) as autoid, * into #tmp from tablename
select min(autoid) as autoid into #tmp2 from #tmp group by name,address
select * from #tmp where autoid in(select autoid from #tmp2)
最後乙個select即得到了name,address不重複的結果集(但多了乙個autoid欄位,實際寫時可以寫在select子句中省去此列)
orwith dups as
(select *, row_number() over (partition by product_code order by product_code) as rownum
from #prod
)delete from dups where rownum > 1;
sql去掉重覆記錄
第一種,資料全部重複,如下圖 需要得到以下的結果 刪除重複的記錄 重覆記錄保留1條 可以按以下方法刪除 1 seleet distinct into tmp from 表名23 drop table 表名45 select into 表名 from tmp67 drop table tmp 第二種,...
SQL去掉重覆記錄
第一種,資料全部重複,如下圖 需要得到以下的結果 刪除重複的記錄 重覆記錄保留1條 可以按以下方法刪除 1 seleet distinct into tmp from 表名23 drop table 表名45 select into 表名 from tmp67 drop table tmp 第二種,...
SQL語句去掉重複資料
有的時候會有部分字段重複,比如id值不一樣,但email一樣,需要刪除掉重複的資料,但相同資料只留一條的情況,如下 1.先查詢出重複的資料 select email from users u1 where rowid select max rowid from users u2 where u1.e...