我遇到了SQL UPDATE命令的問題。我有兩個表,Customer和Customer2。客戶表包含所有客戶信息。 Customer2表包含具有優秀髮票的客戶。我正在嘗試使用Customer表中的區號更新Customer2表。兩個表的匹配部分是列CUS_CODE。SQL更新表1到表2
這是我到目前爲止有:
UPDATE Customer2
SET Customer2.cus_areacode = Customer.cus_areacode
FROM Customer2
INNER JOIN Customer
ON (customer.cus_code = customer2.cus_code)
WHERE customer.cus_code = customer2.cus_code;
我得到一個語法錯誤開始「從顧客2」。我一直在努力爭取這項工作,任何幫助將不勝感激。我正在使用MS Access中的SQL執行此任務。
http://stackoverflow.com/questions/1375207/how-do-i-perform-update-query-with-subquery-in-access –