mysql中如何找出重复数据的所有行

mysql中如何找出重复数据的所有行,第1张

select userid,username,userlevel from tb where userid not in(select userid from tb group by username,userlevel having count(1)=1)

先找出没有重复的userid,然后过滤这些userid,其余的就是有重复的了

select distinct biao.id

from biao

left outer join (select col1, col2

from biao

group by col1, col2

having count(*) >1) tmp

on biao.col1 = tmp.col1

and biao.col2 = tmp.col2


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/7272073.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-03
下一篇 2023-04-03

发表评论

登录后才能评论

评论列表(0条)

保存