>  기사  >  데이터 베이스  >  MySQL의 중복 데이터 삭제 방법

MySQL의 중복 데이터 삭제 방법

怪我咯
怪我咯원래의
2017-07-05 11:07:311334검색

this이 기사는 주로

mysql deleteduplice data mysql 데이터 중복 제거, 필요한 친구들을 참조 할 수 있습니다.

mysql 데이터베이스 query

select * from employee group by emp_name having count (*)>1;

mysql query는 삭제 될 수 있습니다.

select t1.* from employee t1 where (t1.emp_name) in (select t4.emp_name from (select t2.emp_name from employee t2 group by t2.emp_name having count(*)>1) t4) and t1.emp_id not in (select t5.emp_id from (select min(t3.emp_id) as emp_id from employee t3 group by t3.emp_name having count(*)>1) t5);

Mysql 중복 데이터 삭제

delete t1 from employee t1 where (t1.emp_name) in (select t4.emp_name from (select t2.emp_name from employee t2 group by t2.emp_name having count(*)>1) t4) and t1.emp_id not in (select t5.emp_id from (select min(t3.emp_id) as emp_id from employee t3 group by t3.emp_name having count(*)>1) t5);

위 내용은 MySQL의 중복 데이터 삭제 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.