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.
たとえば、列に3つ以上の等しいデータを含む行を表示するにはどうすればよいですか:
1 1 1 2 2 3 3 3
私の選択が表示されるように
1 3
SELECT YourColumn FROM YourTable GROUP BY YourColumn HAVING COUNT(*) >= 3;