[SQL] 중복된 데이터 정리하기
delete from {테이블} where 고유키값 not in ( select 고유키값 from (select 고유키값 from {테이블} group by 중복되는컬럼명) as 고유키값);