使用父记录mysql更新子记录

时间:2016-09-26 09:57:38

标签: mysql sql-server

我有两个表名为profile,另一个名为pictures。在图片表中,有一个字段应该在字段中插入parent_id。我在MSSQL SERVER中使用了下面的脚本并且它可以工作,但它无法在mysql上运行

update pictures 
  set up_user_id = (
               select profile.profile_id 
                 from profile 
                where profile.email = pictures.email
              )

当我执行时,我受到0行影响。

0 个答案:

没有答案