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.
我正在尝试在列上查找重复条目,以便可以修复它们以准备在该列上创建唯一索引。该数据库目前有大约 450 万条记录。
我使用的查询是:
SELECT `sig`, COUNT(*) c FROM `info` GROUP BY `sig` HAVING c > 1;
这立即将我锁定在服务器之外,远程管理员必须重新启动它才能恢复功能。我的问题是,是否有另一种更好的选择来查找重复项?减轻查询影响的其他方法?