mysql想要把另一张表中的某个字段更新到一张表中的字段
update tableA a
set a.relationId=
CONCAT(a.relationId,(select CONCAT(',',GROUP_CONCAT(Id)) from tableB where Id>10 and name='B数据'))
where a.name='A数据';
update tableA a
set a.relationId=
CONCAT(a.relationId,(select CONCAT(',',GROUP_CONCAT(Id)) from tableB where Id>10 and name='B数据'))
where a.name='A数据';