我有一张桌子resources (title, resourceid)
和另一张桌子classifications (title, resourceid, classificationid)
我想将资源中的图块添加到分类表中,resourceid
在classifications
.
当我写这个查询
update `classification`
set `title`= (select title
from Resources
where Resources.`resourceid` = classification.`resourceid`)
我收到了这个错误:
错误 - 子查询返回超过 1 行。