gpt4 book ai didi

sql - 不是单组功能,选择 MAX

转载 作者:行者123 更新时间:2023-12-02 00:05:03 24 4
gpt4 key购买 nike

Select sg_gameno, Max(sg_Year), sg_end, sg_hostcity, country_olympic_name
from Summergames s, Country co
where s.country_isocode = co.country_isocode
不知道这有什么问题。我想得到最近的一年。我应该使用MAX还是其他东西。

最佳答案

如果您想聚合一列( sg_year )而不聚合其他列,您需要一个 GROUP BY条款。

Select sg_gameno, Max(sg_Year), sg_end, sg_hostcity, country_olympic_name
from Summergames s,
Country co
where s.country_isocode = co.country_isocode
group by sg_gameno, sg_end, sg_hostcity, country_olympic_name

在语法上是有效的。它是否为您提供您想要的结果是另一个问题——您需要告诉我们您的表格是什么样的,其中有什么数据,您想要什么结果等。

关于sql - 不是单组功能,选择 MAX,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18886155/

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