CREATE TABLE - SQLite 2 The CREATE TABLE command The "CREATE TABLE" command is used to create a new table in an SQLite database A CREATE TABLE command specifies the following attributes of the new table: The name of the new table The database in which the new table is created Tables may be created in the main database, the temp database, or in any attached database The name of each column in the table The