I need to update a value in several tables, when migrating a production database to a test environment. The name of the tables can be found in another table. How can I do this?
I mean:
for each value$ in select replace(tablename,' ','') from table1
update value$ set replace(column1,'A','B')
It looks like a nested SQL statement.