0
UPDATE 
     t1 
SET 
     t1.name=t2.name, t1.fb_id=t2.fb_id
FROM 
     nullemail t1
     INNER JOIN run1 t2
         ON t1.email=t2.email;

有人可以告诉我这种语法有什么问题吗?我有 2 张桌子。nullemail 和 run1。当 nullemail 中的电子邮件 ID 与 run1 相同时,我想更新 nullemail 的列(fb_id和)。name

4

1 回答 1

0
UPDATE nullemail t1, run1 t2  SET t1.name=t2.name, t1.fb_id=t2.fb_id
where t1.email=t2.email;

尝试这个

于 2013-07-23T06:35:57.840 回答