가장 낮은 id 값만 남기고 중복 데이터 삭제

DELETE t1
FROM TABLE t1,
     TABLE t2
WHERE t1.id > t2.id
      AND t1.column = t2.column;

 

Posted by G4.
,