Mysql 如何删除数据表中的重复数据!

1、使用distinct查询所有不重复的记录

2、创建数据表相同结构的临时表,将第一步的数据复制进去

    create temporary table if not exists student_temp as (select distinct(name), sex from student);

3、truncate table student;

4、insert into student(id,name,sex) select null,name,sex from student_temp;

 

 

Mysql 如何删除数据表中的重复数据!,布布扣,bubuko.com

Mysql 如何删除数据表中的重复数据!

上一篇:DB9 公头母头引脚定义及连接


下一篇:Oracle EBS-SQL (PO-14):检查供应商信息sql