获取作者在最大日期小于或等于特定日期的统计数据

时间:2014-11-11 20:49:01

标签: mysql sql

以下查询是我正在尝试做的伪代码。

这不适用于人气不是max(dt)上的人气。

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

有没有办法在没有加入的情况下实现这一目标?

N有这么多作者对author.max(dt).popularity进行一对一映射(以#34;。&#34;表示法来表达最终结果)。

1 个答案:

答案 0 :(得分:0)

我认为您打算检查HAVING子句中的条件,如

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