1:删除重复数据 --第一步:先找到重复数据 select ProcInstID from record_errorlog group by ProcInstID having count(ProcInstID) > 1 --查看一下 select * from record_errorlog wh ...
分类:
数据库 时间:
2017-09-15 12:07:22
阅读次数:
189
1.如表中没有主键,先添加自动增长主键 alter table 表名 add 列名 int identity (1,1) primary key 2.删除重复数据 delete from 表名 where id not in (select min(id) from 表名 group by id) ...
分类:
数据库 时间:
2016-03-27 23:43:40
阅读次数:
202
1、查询表中重复数据。select
* from people
where peopleId in (select peopleId from people group by peopleId having count(peopleId) > 1)
2、删除表中多余的重复记录,重复记录是根据单个字段(peopleId)来判断,只留有rowid最小的记录
...
分类:
数据库 时间:
2015-07-30 14:56:20
阅读次数:
142