Multi-table Update in Oracle

748 Views Asked by At

Just like Multi-table insert(using INSERT ALL) is there multi-table Update facility in Oracle? In which version?

1

There are 1 best solutions below

0
On

AFAIK there is no such facility in Oracle - you can't UPDATE multiple tables within one statement - you can use mutiple tables within an UPDATE statement but only one table can be updated.

What you could do is either wrap multiple UPDATE statements into one transaction and/or use an INSTEAD OF trigger which in turn contains multiple UPDATE statements...