gpt4 book ai didi

MySQL 查询,MAX() + GROUP BY + WHERE

转载 作者:行者123 更新时间:2023-11-29 07:04:32 24 4
gpt4 key购买 nike

如何获取包含每个分组集的最大值的行?我有这个mysql

SELECT ticketId, version, storeId, `status` FROM ticket where storeId = 1 AND status = 0;

并得到结果。

enter image description here

我想在不同的ticketId中找到最大版本,行将是

ticket | version | storeId | status
---
1 | 5 | 1 | 0
2 | 5 | 1 | 0

mysql 会是什么样子?

最佳答案

使用聚合函数max:

select ticketId,
max(version),
storeId,
`status`
from ticket t
where storeId = 1
and status = 0
group by ticketId,
storeId,
`status`

如果ONLY_FULL_GROUP_BY被禁用,您可以使用:

select ticketId,
max(version),
storeId,
`status`
from ticket t
where storeId = 1
and status = 0
group by ticketId;

关于MySQL 查询,MAX() + GROUP BY + WHERE,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42240438/

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