以下查询是我正在尝试做的伪代码。
这不适用于人气不是max(dt)
上的人气。
select authors,max(dt),popularity from author_info.performance
where dt<='20070201'
group by authors
有没有办法在没有加入的情况下实现这一目标?
N有这么多作者对author.max(dt).popularity
进行一对一映射(以#34;。&#34;表示法来表达最终结果)。
答案 0 :(得分:0)
我认为您打算检查HAVING
子句中的条件,如
select authors,
popularity
from author_info.performance
group by authors
having max(dt) <= '20070201';