Category: Table

  • SQLite Drop Table

    In SQLite, DROP TABLE statement is used to remove a table definition and all associated data, indexes, triggers, constraints and permission specifications associated with that table. Syntax: Note: You must be very careful while using the DROP TABLE command because once the table is deleted then all the information available in the phone is destroyed…

  • SQLite Create Table

    In SQLite, CREATE TABLE statement is used to create a new table. While creating the table, we name that table and define its column and data types of each column. Syntax: Let’s take an example to create table in SQLite database: Use the SQLite “.tables” command to see if your table has been created successfully.…