我有一个这样的 MySQL 表。
| season_id | round_1 | names | score_round_1
| 5 | 10 | John1 | 5
| 5 | 10 | John2 | 3
| 5 | 11 | John3 | 2
| 5 | 11 | John4 | 5
我想在每个 round_1(10,11) 组中选择 score_round_1 最高的记录。
在这种情况下,将选择第一行和最后一行。
我尝试使用 GROUP BY round_1 但只返回两者中的第一行。
有什么建议吗?
佐尔卡