Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个充满重复输入错误的庞大数据库。消除所有错误的最快方法是什么?
错误:1062 - 键 'PRIMARY' 的重复条目 'X'
提前致谢。
如果不管表中剩下什么都这样做:
insert
insert ignore
我这样做过一次,即使不是在生产/不是很大的数据库 - 每个转储 200mb - 只是在本地主机上的一些 anoing 关系问题。我知道这并不漂亮……但对我来说有效。
编辑:如果有人认为这是不好的解决方案,请发表评论 - 我想知道它会如何变得更好......