gpt4 book ai didi

mysql - 根据列值过滤结果

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

这可能看起来很简单。但花了一段时间后,我想分享这个。我有以下查询。

SELECT *
FROM UPGRADE_HISTORY
ORDER BY MERCHANT_ID, RELEASE_ID

Release_ID 列出了与特定商家相对应的所有版本。就我而言,我需要检索与每个商家的最新 RELEASE_ID 对应的结果集。

我怎样才能实现这个目标?

最佳答案

我想这就是你想要的:

select uh.*
from upgrade_history uh
where uh.release_id = (select max(uh2.release_id)
from upgrade_history uh2
where uh2.merchant_id = uh.merchant_id
);

这会为每个商家返回一行,其中包含发布 ID 的最大值。

关于mysql - 根据列值过滤结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38719930/

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