将数据从一个mySQL表字段移动到另一个表字段,其中每个表具有匹配的ID

时间:2016-05-05 16:07:07

标签: mysql

我需要将表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语句有关。

1 个答案:

答案 0 :(得分:0)

查看this问题的最后评论。我认为它与你的相似。