如何使用sql语句在sqlserver中删除重复数据
3个回答
展开全部
题主可 参考下列例句:
删除表t1字段col1有重复的记录
delete from t1 where exists
(select 1 from (select col1 from t1 group by col1 having count(1)>1) t where t.col1=t1.col1);
如果希望对于有重复的记录希望保留其中一条记录而不是全部删除,则可以运行下列语句,前提是数据表必须含有自增id列。
delete from t1 where exists
(select 1 from (select col1,max(id) as id from t1 group by col1 having count(1)>1) t where t.col1=t1.col1 and t.id<>t1.id);
删除表t1字段col1有重复的记录
delete from t1 where exists
(select 1 from (select col1 from t1 group by col1 having count(1)>1) t where t.col1=t1.col1);
如果希望对于有重复的记录希望保留其中一条记录而不是全部删除,则可以运行下列语句,前提是数据表必须含有自增id列。
delete from t1 where exists
(select 1 from (select col1,max(id) as id from t1 group by col1 having count(1)>1) t where t.col1=t1.col1 and t.id<>t1.id);
展开全部
一般的方法是查询count字段的数,大于2的表示重复,以下是网上的代码
select * from people
where peopleId in (select peopleId from people group by peopleId having count(peopleId) > 1)
操作上有多种方法,我给一种最容易理解的方式:
把重复的记录查出来(查出来去重复,代码很简单吧),添加临时表,然后删除原表中重复的东西,再把临时表的内容写回来(已是去重复的),删除临时表。
select * from people
where peopleId in (select peopleId from people group by peopleId having count(peopleId) > 1)
操作上有多种方法,我给一种最容易理解的方式:
把重复的记录查出来(查出来去重复,代码很简单吧),添加临时表,然后删除原表中重复的东西,再把临时表的内容写回来(已是去重复的),删除临时表。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |