gpt4 book ai didi

mysql - 带有额外条件(包括分组依据)的 MAX

转载 作者:行者123 更新时间:2023-11-30 01:22:52 25 4
gpt4 key购买 nike

在这个问题( MAX with extra criteria )之后,我被告知我需要提出一个新问题以获取更多信息。

上述问题涉及获得玩家的最高分,如果最高分在“BatHowOut”字段中的值为“not out”,则应显示为 96* 而不是 96。

我还需要能够通过按 PlayerID 分组来获得最高分,这就是这个问题的目的。

SELECT
PlayerID,
MAX(CAST(MatchPlayerBatting.BatRuns AS SIGNED)) AS HighestScore
FROM
MatchPlayerBatting
GROUP BY
PlayerID

根据上一个问题,请考虑:

BatRuns   BatHowOut
96 not out
96 lbw

BatRuns BatHowOut
96 not out
102 lbw

最佳答案

尝试做这样的事情:

已编辑..

select playerID,
max(concat((BatRuns),
case when BatRuns = (Select max(BatRuns) from mytable where
outornot = 'no') then '*' else '' end))
from mytable
group by playerID
order by cast(BatRuns as signed) desc,
(CASE WHEN outornot = 'no' then 1 else 2 end);

<强> SQL Fiddle

关于mysql - 带有额外条件(包括分组依据)的 MAX,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18355226/

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