gpt4 book ai didi

Mysql MAX value 和 Last Record 同时存在

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

如果您有包含 2 个字段的表:

编号 |数量

如何使用 1 个查询获取最大(金额)和最后输入记录的金额(按 id desc 排序)?

谢谢你

最佳答案

select amount as last_amount, 
(select max(amount) from your_table) as max_amount
from your_table
order by id desc
limit 1

关于Mysql MAX value 和 Last Record 同时存在,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13420572/

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