I try to update three tables in Oracle, which are totally different, but in all there is a field exactly the same "STATUS".
The issue is that I need these fields to be updated to "NEW".
This is why I have asked myself if it is possible to update multiple tables at the same time.
I thought of something like this, however it throws me wrong:
UPDATE SS_WERUECK, SS_BESTELLUNGR, SS_KOMMBESTR
SET STATUS = 'NEW';
I remain attentive in advance I appreciate it.