0

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?

Arulkumar
  • 12,966
  • 14
  • 47
  • 68

1 Answers1

0

Updating multiple table in single statement is not possible. But you may start a transaction, run individual updates and commit all changes at the end.

wildraid
  • 126
  • 4