这种用group by如何分类?最好能解释一下语句,如何优化。谢谢
select user_id from tb group by user_id having(count(1))>2;
select count(1) from ....(后同上面)
这个没啥好优化的了,user_id上加个索引就完了。
select 字段1,字段2 from 表名 group by 字段1,字段2 这是最基本的
具体优化看需求
刚才图没有显示出来,请帮忙看一下,谢谢。