0

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

BenMorel
  • 34,448
  • 50
  • 182
  • 322
Plymouth Rock
  • 472
  • 2
  • 6
  • 20

1 Answers1

1

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...

Yahia
  • 69,653
  • 9
  • 115
  • 144