gpt4 book ai didi

mysql - 如何在具有3000万行的mysql表中找到重复值

转载 作者:行者123 更新时间:2023-11-29 09:53:08 25 4
gpt4 key购买 nike

在 Mysql 中,我有一个包含两列(id、uuid)的表。然后我向其中插入了 3000 万个值。 (ps:uuid可以重复)

现在,我想用Mysql语法来查找表中的重复值,但是sql花费了太多时间。

我想搜索所有列,但是需要很长时间,所以我尝试查询前一百万行,花了8秒。

然后我尝试了 1000 万行,花了 5 分钟,然后,当有 2000 万行时,服务器似乎死机了。

select count(uuid) as cnt
from uuid_test
where id between 1
and 1000000
group by uuid having cnt > 1;

谁能帮我优化sql,谢谢

最佳答案

尝试这个查询,

从 uuid_test GROUP BY 1 HAVING cnt>1 中选择 uuid, count(*) cnt;

希望有帮助。

关于mysql - 如何在具有3000万行的mysql表中找到重复值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54434598/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com