작업 전 백업 및 확인 필수 1. 고유키 사용중복 데이터 조회select title, start_date, end_date, count(*) from test_table group by title, start_date, end_datehaving count(*) > 1;delete a from test_table a, test_table b where a.title = b.title and a.start_date = b.start_date and a.end_date = b.end_date and a.id b.id; -- 최초 데이터 남기기 2. row_number로 처리partition by -> 그룹order by -> 정렬delete a from test_table a, (selec..