2016 - 2024

感恩一路有你

sql语句筛选重复字段 用SQL语句怎么过滤重复数据?

浏览量:1159 时间:2021-03-17 18:16:08 作者:admin

用SQL语句怎么过滤重复数据?

1、查找表中多余的重复记录,重复记录是根据单个字段(peopleId)来判断复制代码代码如下:select * from peoplewhere peopleId in (select peopleId from people group by peopleId having count(peopleId) > 1)2、删除表中多余的重复记录,重复记录是根据单个字段(peopleId)来判断,只留有rowid最小的记录复制代码代码如下:delete from people where peopleId in (select peopleId from people group by peopleId having count(peopleId) > 1)and rowid not in (select min(rowid) from people group by peopleId having count(peopleId)>1)

sql查询语句过滤重复数据?

SELECT Id,SiteId,InsertTime,IP,Referrer,Url FROM ( SELECT ROW_NUMBER()OVER(PARTITION BY IP ORDER BY Id DESC) number, Id,SiteId,InsertTime,IP,Referrer,Url From YourTable )T where number = 1 拿走不谢

sql语句筛选重复字段 sql过滤重复数据字段 sql语句筛选重复数据

版权声明:本文内容由互联网用户自发贡献,本站不承担相关法律责任.如有侵权/违法内容,本站将立刻删除。