PHP/Mysql中如何删除所有重复记录

发布于 2024-11-19 11:54:10 字数 233 浏览 1 评论 0原文

可能的重复:
如何删除mysql数据库中的重复记录?

有重复mysql 表中的行。 如何找到重复的行并删除它们。

Possible Duplicate:
How to delete duplicate records in mysql database?

there are duplicate rows in the mysql table.
how find the duplicate rows and delete them.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

淡淡绿茶香 2024-11-26 11:54:10

我的首选解决方案:

如何删除mysql数据库中的重复记录?

将来,使用唯一/主键来确保这种情况不会再次发生。

My preferred solution:

How to delete duplicate records in mysql database?

In the future, use unique/primary keys to make sure this doesn't happen again.

情绪 2024-11-26 11:54:10

定义要用于确定重复的列并在其上添加唯一索引。

ALTER IGNORE TABLE table_name ADD UNIQUE INDEX (c1,c2,c3);

这样做的优点是可以防止将来重复。

Define the columns that you want to use to determine duplication and add a unique index on them.

ALTER IGNORE TABLE table_name ADD UNIQUE INDEX (c1,c2,c3);

This has the advantage of preventing future duplicates.

南城旧梦 2024-11-26 11:54:10

DELETE * ,count(*)as n FROMaddgroup by id HAVING n>1

它将删除所有重复记录

DELETE * ,count(*)as n FROMaddgroup by id HAVING n>1 .

It will delete all duplicate records

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文