1

我遇到了这个更新声明的问题:

update customers
set customers.email = initialsynctemptable.thinkEmail,
    customers.packages = initialsynctemptable.thinkPackages 
FROM customers INNER JOIN initialsynctemptable
ON  customers.id = initialsynctemptable.customerID

并且正在使用 mySQL。FROM 字下面有一条波浪线。本质上,我正在尝试使用另一个表(initialsynctemptable)中的数据更新一个表(客户).....帮助!感谢您

4

1 回答 1

2

尝试

UPDATE customers c INNER JOIN 
       initialsynctemptable i ON  c.id = i.customerID
   SET c.email = i.thinkEmail,
       c.packages = i.thinkPackages 
于 2013-05-02T21:52:09.783 回答