SQLite CREATE TABLE statement is used to create a new table in any of the given databases. The name of the table and the name of each column in the table are specified as part of the CREATE TABLE statement. SQLite ALTER TABLE statement is used to add modify or delete columns in an existing table. The changes made using ALTER TABLE are not permanent until they are committed using a COMMIT statement. SQLite DROP TABLE statement is used to remove a table from the database. is a relational database management system (RDBMS) contained in a C programming library. In contrast to other database management systems SQLite is not a client–server database engine. Rather it is embedded into the end program. SQLite creates databases in files with .db extension that can be freely shared among applications.To create or modify a database SQLite uses CREATE ALTER and DROP SQL commands. CREATE command is used to create a new database or table. ALTER command is used to modify an existing database or table. DROP command is used to delete an entire database or table.SQLite is a relational database management system (RDBMS) similar to MySQL Oracle or Microsoft SQL Server. The main difference between SQLite and other RDBMSs is that SQLite is not a client-server database engine. Rather it is embedded into the application that makes use of its functionality.To create a new table in SQLite use the CREATE TABLE statement. This statement allows you to specify the name of the table and the names and data types of the columns in the table.To alter an existing table in SQLite use the ALTER TABLE statement. This statement allows you to add or remove columns from anexisting table.To drop a table in SQLite use the DROP TABLE statement. This statement permanently removes the specified table from the database.