gpt4 book ai didi

mysql - 为什么这会给我错误的 customerNumber?

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

我试图让客户支付最高金额。它给了我最大的金额,但找错了客户。我该怎么办?

SELECT temp.customerNumber, MAX( temp.max ) AS sum
FROM (
SELECT p.customerNumber, p.amount AS max
FROM payments p
GROUP BY p.customerNumber
) AS temp

最佳答案

我认为您不需要这里的子查询:

SELECT p.customerNumber, MAX(p.amount) AS max
FROM payments p
GROUP BY p.customerNumber
ORDER BY max DESC
LIMIT 1

关于mysql - 为什么这会给我错误的 customerNumber?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22305347/

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