我有productinfo
桌子和product_temp
桌子。我想更新UpdateDate
表productinfo
的字段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)