#SQLite: load rows from one table into another table with differing numbers of columns
####Suppose I have two tables, both called nations, one from an old database (old.nations) and the other from the current database (nations):
####New table
CREATE TABLE nations (
id INTEGER NOT NULL,
name VARCHAR,
thumb_id INTEGER,