使用 PHP 更新重复的 MySQL 记录
我需要使用 PHP 更新数据库中的重复记录。
例如:
我在数据库中有三个相同的记录micheal
。我需要将两条 micheal
记录更新为 micheal 1
和 micheal 2
,但保留一条 micheal
不变。
I need to update the duplicate records in database using PHP.
For example:
I have three identical record micheal
in the database. I need to update the two micheal
records into micheal 1
and micheal 2
, but left one micheal
as is.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试....
然后添加唯一索引以防止再次发生。
Try....
Then add a unique index to prevent it happening again.
如果您在并发修改时遇到问题,请尝试将 id 和名称存储为数组并启动更新。
If you have problems with concurrent modifications, try to store the ids and the names as an array and launch the updates.