t_like 评论赞表: userId, commentId, statusstatus = 1 表示已赞我想取出6条赞的最多的数据,应该就是根据 commentId 出现的次数做降序排序。
1 回答
Cats萌萌
TA贡献1805条经验 获得超9个赞
elect commentId, count(status=1) as times from t_like group by commentId order by times desc limit 6
- 1 回答
- 0 关注
- 1256 浏览
添加回答
举报
0/150
提交
取消