Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Hive テーブルに文字列の列があり、この列の各文字列の出現回数をカウントしたいと考えています。どうやってやるの?
列ごとにグループ化してから、各グループのアイテム数を数える必要があるようです。このようなもの:
SELECT somecolumn, count(1) AS count FROM sometable GROUP BY somecolumn