这种用group by如何分类?最好能解释一下语句,如何优化。谢谢
1 回答
猛跑小猪
TA贡献1858条经验 获得超8个赞
select user_id from tb group by user_id having(count(1))>2;
select count(1) from ....(后同上面)
这个没啥好优化的了,user_id上加个索引就完了。
添加回答
举报
0/150
提交
取消