查找某个人在某个班组内存在多个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 col1,count(col1) as cnt
from t1 group by col1
这个查询可返回表t1的字段col1中每个值的重复次数。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)