我创建了此查询,但似乎无法正常工作。我不得不承认我是新手,过去我写过一些简单的查询,但是我从来没有尝试过从另一个表更新过一个表。我只是很稠密...他们看不到帮助。这是我正在使用的:

Insert into `customers_marketing_options` (`created_on`)
    select `created_on`,
    from `customers`
    where `customers`.`customer_id`= `customers_marketing_options`.`customer_id`;


任何帮助将非常感激。

最佳答案

UPDATE customers_marketing_options
JOIN customers ON customers.customer_id = customers_marketing_options.customer_id
SET customers_marketing_options.created_on = customers.created_on

10-06 15:54