刪除重復數據sql語句
方法一
假設有重復的字段為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)
方法二
declare @max integer,@id integer
declare cur_rows cursor local for select 主字段,count(*) from 表名 group by 主字段 having count(*) > 1
open cur_rows
fetch cur_rows into @id,@max
while @@fetch_status=0
begin
select @max = @max -1
set rowcount @max
delete from 表名 where 主字段 = @id
fetch cur_rows into @id,@max
end
close cur_rows
set rowcount 0
方法三
如果該表需要刪除重復的記錄(重復記錄保留1條),可以按以下方法刪除
select distinct * into #tmp from tablename
drop table tablename
select * into tablename from #tmp
drop table #tmp
實例
vieworder id號 打卡機 消費類型 時間 價錢
1 a1 1號機 早餐 2006-08-03 07:09:23.000 2
2 a1 1號機 早餐 2006-08-03 07:10:13.000 2
3 a1 1號機 早餐 2006-08-03 07:10:19.000 2
4 a1 1號機 午餐 2006-08-03 12:02:10.000 5
5 a2 1號機 午餐 2006-08-03 12:11:10.000 5
6 a2 1號機 午餐 2006-08-03 12:12:10.000 5
代碼
delete from 表 a
where exists(select * from 表 where 消費類型=a.消費類型 and 時間>=dateadd(minute,-2,a.時間) and 時間<a.時間)
刪除之前先用select語句查看要被刪除的數據
select *
from 表 a
where exists(select * from 表 where 消費類型=a.消費類型 and 時間>=dateadd(minute,-2,a.時間) and 時間<a.時間)