gpt4 book ai didi

mysql - 复制数据的更好方法?

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

我有两个表,当 testpostmeta.meta_value = testTable.stockcode

testTable 中有大约 2000 行testpostmeta 中有大约 65k 行

代码有效,只需大约 1-2 分钟即可完成。有什么办法可以加快仓鼠轮的速度吗?

UPDATE testTable 
INNER JOIN testpostmeta
ON testTable.stockcode = testpostmeta.meta_value
SET testTable.post_id = testpostmeta.post_id

我尝试添加 WHERE testpostmeta.meta_value = testTable.stockcode 但这没有用。

最佳答案

确保你在 testTable 和 testpostmeta 上有正确的索引

CREATE INDEX my_idx1  ON testTable (stokcode);

CREATE INDEX my_idx2 ON testpostmeta (meta_value , post_id);

关于mysql - 复制数据的更好方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51491121/

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