I have a database that include many tables with have same column name and I would like to run a SQLITE3 query to change the values of all tables.
Table XXX (id integer, name text);
Table YYY (id integer, .....);
Table ZZZ (id integer, .....);
Table....
To run a query on all table which jave a field name "id" I used the query: select name from sqlite_master where sql like ('%id%');
But, how could I use the UPDATE query with the list of tables?