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.
私は次のようなテーブルを持っています:
id_cat id_city 1 33 1 33 1 33 2 44 2 33 2 55
そして私は次のような結果を得たいです:
id_cat id_city cat_count 1 33 3 2 44 1 2 33 1 2 55 1
クエリを作成するにはどうすればよいですか?ありがとう!
COUNT()集計関数とGROUP BY句であるwhichを使用します。
COUNT()
GROUP BY
SELECT id_cat, id_city, COUNT(*) cat_Count FROM tableName GROUP BY id_cat, id_city