Hi!
I'm trying to update multiple tables at the same time. I have plenty of tables in the database which all have some columns in common, one of this tables i would like to change.
I tried something like this (which doesn't work - and a lots of variations which also don't work, but I think helps to understand the problem)
UPDATE
(SELECT table_name FROM user_tables WHERE table_name like 'TD%')
SET my_flag= 1 WHERE depNo=1
Is there any way to solve this problem with SQL (PL/SQL)?
Any help will be appreciated greatly. Thanks.
Klaus