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.
T-SQLクエリでテーブルから重複を削除する最も簡単な方法は何ですか?
列は A と B です。
ワンライナーは大歓迎です。
これを試して
SELECT A, B, count(*) FROM table GROUP BY A, B HAVING count(*) > 1