这是我的 BigQuery
SELECT word,word_count,corpus_date FROM
[publicdata:samples.shakespeare]
WHERE word="the" ORDER BY word_count asc
输出为
Row word word_count corpus_date
1 the 57 1609
2 the 106 0
3 the 287 1609
4 the 353 1594
5 the 363 0
6 the 399 1592
7 the 421 1611
我希望数据按 corpus_date 分组。我尝试使用按 corpus_date 分组
SELECT word,word_count,corpus_date FROM
[publicdata:samples.shakespeare]
WHERE word="the" group by corpus_date
ORDER BY word_count asc
但它不允许我按 corpus_date 进行分组。以任何方式获取按 corpus_date 分组的数据