gpt4 book ai didi

MySQL 查询 : select records with highest value in group

转载 作者:行者123 更新时间:2023-11-30 23:31:35 24 4
gpt4 key购买 nike

我有一个这样的 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 但它只返回两行中的第一行。

有什么建议吗?

祖尔卡

最佳答案

这很简单

select max(score_round_1),
name
from score
group by round_1

关于MySQL 查询 : select records with highest value in group,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10312928/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com