gpt4 book ai didi

mysql - 获取作者在小于或等于特定日期的最大日期的统计信息

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

以下查询是我想要执行的操作的伪代码。

这不起作用,因为流行度不是 max(dt) 上的流行度。

select authors,max(dt),popularity from author_info.performance 
where dt<='20070201'
group by authors

有没有一种方法可以在不加入的情况下完成此任务?

有 N 多个作者,具有 author.max(dt).popularity 的一对一映射(以“.”符号表示最终结果)。

最佳答案

我认为您的意思是检查 HAVING 子句中的条件,例如

select authors,
popularity
from author_info.performance
group by authors
having max(dt) <= '20070201';

关于mysql - 获取作者在小于或等于特定日期的最大日期的统计信息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26874278/

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