sql数据库 有多条记录完全重复,怎么删除重复记录,只保留一条,sql语句怎么写

如题所述

如果只是要查询不是重复的记录的话
select distinct * from 表
如果是将多余的重复记录删除
首先将不是重复的数据提取出来,保存到一个临时表中
select distinct * into #temp from 表
然后删除原来的表
delete from 表
最后往里面插入临时表的数据
insert into 表
select * from #temp
温馨提示:内容为网友见解,仅供参考
第1个回答  2011-09-26
Delete from tablename where id not in (select max(id) from

tablename group by col1,col2,...)本回答被提问者采纳
第2个回答  2011-09-13
select distinct 重复字段名称 FROM 表
第3个回答  2013-04-10
select distinct * into 新表名 from 原表
第4个回答  2011-09-13
select distinct * from dual
相似回答