개발언어
SQL튜닝 테이블 drop 안하고 중복되는 키 값 제거하는 방법
쿵도리
2018. 4. 24. 11:51
delete from t2 where rowid not in (select max(rowid) from t2 group by employee_id)