我有两个表名为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行影响。