Let's imagine a scenario where I need to give a update
in 10 different tables in the same column in all of them updating a given data, will the syntax below work?
UPDATE tab1, tab2, tab3... SET id_usuario = 'novo id' WHERE id_usuario = 'id antigo'
All tables have the same column id_usuario
, this is a question merely out of curiosity.