MySQL 删除重复数据实例
Posted 一只阿木木
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MySQL 删除重复数据实例相关的知识,希望对你有一定的参考价值。
如何删除重复数据
业务场景:删除评论表中对同一订单同一商品的重复评论,只保留最早的一条。
- 查看是否存在对于同一订单同一商品的重复评论。
SELECT order_id,product_id,COUNT(*) FROM product_comment GROUP BY order_id,product_id HAVING COUNT(*)>1;
- 备份product_comment表。
CREATE TABLE bak_product_comment_18051801 LIKE product_comment;
INSERT INTO bak_product_comment_18051801 SELECT * FROM product_comment;
- 删除同一订单的重复评论。
DELETE a FROM product_comment a JOIN( SELECT order_id,product_id,MIN(comment_id) AS comment_id FROM product_comment GROUP BY order_id,product_id HAVING COUNT(*)>=2 ) b ON a.order_id=b.order_id AND a.product_id=b.product_id AND a.comment_id>b.comment_id
以上是关于MySQL 删除重复数据实例的主要内容,如果未能解决你的问题,请参考以下文章