I have multiple tables with the same column and would like to update the value in all of them as efficiently as possible. I am writing this into a procedure but for ease of reading here's the idea behind what I would like. Is there a way to do something like this?
update table1, table2, table3
set report_name = 'new'
where report_name = 'old'
update table1, table2, table3
set report_name = 'new'
where report_name = 'old'