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.
テーブルがあり、SQL クエリを使用して最も多くのレコードを持つ 3 人の名前 (Ted、Ringo、Paul) を表示したいと考えています。初歩的な質問ですが教えてください。
私のテーブル:
SELECT TOP 3 Name FROM YourTable GROUP BY Name ORDER BY COUNT(*) DESC