1348 Tweet Counts Per Frequency 推文计数
Description:
A social media company is trying to monitor activity on their site by analyzing the number of tweets that occur in select periods of time. These perio
1. 基础
group by 对结果集进行分组,在分组的列上可以使用聚合函数(avg、sum、max、min、count)
group by 必须在 where 之后 order by 之前
having 子句可应用限定条件进行分组 group by ... having ...
基本语法
SELECT column_name, function(column_name)
FROM tabl