2010年1月21日木曜日

MySQLで重複を抽出する方法

select * from テーブルA
where 列A in
(select 列A from テーブルA group by 列A
having count(*) > 1);

0 件のコメント:

コメントを投稿