gpt4 book ai didi

mysql - 更新表列在哪里

转载 作者:行者123 更新时间:2023-12-01 00:26:11 25 4
gpt4 key购买 nike

我有productinfo 表和product_temp 表。我想更新表 productinfo 的字段 UpdateDate,其中 productinfo.ProductID = productinfo_temp.ProductID

但是下面的代码不起作用。

UPDATE productinfo a 
SET UpdateDate = productinfo_temp.UpdateDate
WHERE EXISTS(SELECT NULL FROM productinfo_temp b WHERE a.ProductID = b.ProductID)

最佳答案

试试这个

UPDATE productinfo a JOIN productinfo_temp b ON a.ProductID = b.ProductID
SET a.UpdateDate = b.UpdateDate

关于mysql - 更新表列在哪里,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14330610/

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