我有以下 MySQL 查询:
Select match_static_id, comments as last_comment, max(timestamp)
from comments as c
group by match_static_id;
我有对比赛的评论表,我想获得每场比赛的最新评论。所以我为此使用 max(timestamp) 和 group by (match_static_id) 但我的问题是我得到了按 match_static_id 分组的最大时间戳,但我得到了其他评论(不是最大时间戳的评论)我的查询是否以错误的方式排序?