sql话语执行效率低啊

sql语句执行效率低啊,,,select * from `order` group by user_id having(count(*) $cishu) order by id

sql语句执行效率低啊,,,
select * from `order` group by user_id having(count(*) > $cishu) order by id desc;


这怎么优化啊,, order表特别大
[解决办法]
select *  改成需要查询的列名

count(*) 改成 count(1)
[解决办法]
既然查询的 是所有的列 group by 最后也写上所以的列名