DB에서 중복행 제거하는 쿼리
데이터를 수집하다보면 중복되는 SQL 데이터를 제거하고 싶을 때가 있다. 그 때 아래의 쿼리문을 입력하면 제거 가능 DELETE t1 FROM newslistspecial t1 JOIN newslistspecial t2 ON t1.title=t2.title AND t1.originallink = t2.originallink AND t1.description = t2.description where t1.num > t2.num;