1CREATE TABLE IF NOT EXISTS some_table (id INTEGER PRIMARY KEY AUTOINCREMENT, ...);
2
1 CREATE TABLE [IF NOT EXISTS] [schema_name].table_name (
2 column_1 data_type PRIMARY KEY,
3 column_2 data_type NOT NULL,
4 column_3 data_type DEFAULT 0,
5 table_constraints
6) [WITHOUT ROWID];
1UPDATE Table1 set Name=(select t2.Name from Table2 t2 where t2.id=Table1.id)
2