Mysql
 sql >> Database >  >> RDS >> Mysql

Aggiornamento H2 con join

Prova qualcosa del genere:

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)