Using the below statement it gives error in Exasol however it will work in MySQL
update u1, u2
set u1.name='H'
,u2.name='H'
from u1 u
inner join u2 us on (u.id=us.id);
Is there a way to to update multiple tables in single update query in Exasol?