mysql删除重复id_mysql删除重复记录,保存Id最小的一条

方法1:

1、创建一个临时表,选取需要的数据。

2、清空原表。

3、临时表数据导入到原表。

4、删除临时表。

mysql> select * from student;

+----+------+

| ID | NAME |

+----+------+

| 11 | aa |

| 12 | aa |

| 13 | bb |

| 14 | bb |

| 15 | bb |

| 16 | cc |

+----+------+

6 rows in set

mysql> create temporary table temp as select min(id),name from student group by name;

Query OK, 3 rows affected

Records: 3 Duplicates: 0 Warnings: 0

mysql> truncate table student;

Query OK, 0 rows affected

mysql> insert into student select * from temp;

Query OK, 3 rows affected

Records: 3 Duplicates: 0 Warnings: 0

mysql> select * from student;

+----+------+

| ID | NAME |

+----+------+

| 11 | aa |

| 13 | bb |

| 16 | cc |

+----+------+

3 rows in set

mysql> drop temporary table temp;

Query OK, 0 rows affected

这个方法,显然存在效率问题。

方法2:按name分组,把最小的id保存到临时表,删除id不在最小id集合的记录,如下:

mysql> create temporary table temp as select min(id) as MINID from student group by name;

Query OK, 3 rows affected

Records: 3 Duplicates: 0 Warnings: 0

mysql> delete from student where id not in (select minid from temp);

Query OK, 3 rows affected

mysql> select * from student;

+----+------+

| ID | NAME |

+----+------+

| 11 | aa |

| 13 | bb |

| 16 | cc |

+----+------+

3 rows in set

方法3:直接在原表上操作,容易想到的sql语句如下:

mysql> delete from student where id not in (select min(id) from student group by name);

执行报错:1093 - You can't specify target table 'student' for update in FROM clause

原因是:更新数据时使用了查询,而查询的数据又做了更新的条件,mysql不支持这种方式。

怎么规避这个问题?

再加一层封装,如下:

mysql> delete from student where id not in (select minid from (select min(id) as minid from student group by name) b);

Query OK, 3 rows affected

mysql> select * from student;

+----+------+

| ID | NAME |

+----+------+

| 11 | aa |

| 13 | bb |

| 16 | cc |

+----+------+

3 rows in set

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值