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.
私のテーブルは次のようになっているとしましょう。
username userid a1 1 a1 1 a1 1 b2 2 c2 3 d2 3
最も人気のあるユーザー名:a1
a1
テーブルで最も人気のあるアイテムを見つけるにはどうすればよいですか?
SELECT username, count(*) AS frequency FROM your_table GROUP BY username ORDER BY frequency DESC LIMIT 1
単一の行が生成されます:
username | frequency ---------+---------- a1 3