본문 바로가기
설정

MySQL 동일명 데이터 중복 제거

by PEKAH 2021. 1. 8.

한 파일만 남기고 중복 제거


delete from <table> where id not in ( select id from ( select id from <table> group by image) as id);


중복 데이터 전체 제거


delete from <table> WHERE image IN ( SELECT image FROM (SELECT image FROM <table> GROUP BY image HAVING count(*) > 1) temp_table) ;

select count(image) from <table>;

select count(distinct image) from <table>;

'설정' 카테고리의 다른 글

노트북 전원 유지 방법  (0) 2021.03.18
[Docker] 사용 권한 설정  (0) 2021.03.18
MySQL 백업 및 복원 명령어  (0) 2021.01.08
리눅스 디렉토리 전체 압축 명령어  (0) 2021.01.08
crontab 실행 명령어  (0) 2021.01.08

댓글