これが私の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でグループ化されたデータを取得する方法