Say that I want to run the following SQLite command to delete all rows in a particular table where the Name column is NULL:
DELETE FROM myTable WHERE Name IS NULL;
Now let's say that I've got 20 tables, and they aren't named in any pattern. I want to delete all rows where the Name column is NULL from every table in the database. Is there a statement I can use to do this in one go? Or will I have to run one statement to get the table names, then take the output and run 20 or so commands using each table name?