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.
このコマンドで列からすべての行を選択しています:
SELECT city From Users
これで、テーブルからすべての都市を取得しています。
ここで、すべての列データとそれぞれのカウントを選択したいと思います。例:
New York 20 Los angeles 46 London 35
これにはどのようなコマンドが必要ですか?
これに使用できますCount:
Count
SELECT `city`, COUNT(*) FROM `users` GROUP BY `city`;