Mention some SQLite commands and also explain them?

devquora
devquora

Posted On: Feb 22, 2018

 

The SQLite commands interact directly with relational databases and are similar to SQL.
Below are the standard SQLite commands which are classified based on their operational nature.
Data Definition Language: It provides storage structures and methods to access data from the database system.
  • CREATE
  • ALTER
  • DROP

Data Manipulation Language: It allows user to manipulate (add/delete/modify) data.

  • INSERT
  • UPDATE
  • DELETE

Data Query Language: It allows the user to retrieve data from the database.

  • SELECT

    Related Questions

    Please Login or Register to leave a response.

    Related Questions

    SQLite interview questions

    What is SQLite and where is it used?

    The SQLite is mostly ACID (Atomicity, Consistency, Isolation, and Durability) compliant relational database management ..

    SQLite interview questions

    Distinguish between SQLite and SQL?

    SQLite: It is a well built, embedded relational database management system that is mostly used in mobile devices for da..

    SQLite interview questions

    What are SQLite Indexes and mention the instances where they are to be avoided?

    SQLite Indexes are the special lookup tables that are used by database Engines to speed up the process of retrieving da..