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,autoid
select * from #tmp where autoid in(select autoid from #tmp2)
最後一個select即得到了name,address不重復的結果集(但多了一個autoid字段,實際寫時可以寫在select子句中省去此列)
(四)
查詢重復
select * from tablename where id in (
select id from tablename
group by id
having count(id) > 1
)