MYSQL过滤表中某几个字段重复的数据

MYSQL过滤表中某几个字段重复的数据,第1张

场景:表中包含有group_id,worker_id,status字段,查询这三个字段是否存在重复的数据

查找某个人在某个班组内存在多个status为0的数据

查找某个人在某个班组内存在多个status为0的数据,将最小的id选出来

查找某个人在某个班组内存在多个status为0的数据,将最小的id选出来,并设置status为1

将查询查询结果作为where in的条件,需要select的结果再通过一个中间表select多一次,否则会报You can't specify target table for update in FROM clause。

select * from 表名 where match_id in (select match_id from 表名 where team_id='a' or team_id='b' group by match_id)

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/8652787.html

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

发表评论

登录后才能评论

评论列表(0条)

保存