我需要将表FCSTMR字段CSTYPE中的所有数据移动到表customers2字段customers_group_pricing。 存储在FCSTMR CS_ENCSUNIQUE中的值与customers2 customers_id中存储的值匹配。
我尝试使用以下mysql,但它根本没有移动任何数据。
UPDATE customers2
SET `customers_group_pricing` = (
SELECT `CSTYPE`
FROM FCSTMR
WHERE CS_ENCSUNIQUE = customers2.customers_id);
我哪里出错了?我假设与WHERE语句有关。