Mysql
 sql >> Base de Dados >  >> RDS >> Mysql

Atualização H2 com junção


Tente algo assim:
update table_a a
set a.b_id = (select b.id from table_b b where b.a_id = a.id)
where exists
(select * from table_b b where b.a_id = a.id)