SQL Commands

SQL commands are 4 types. DDL, DML, DCL and TCL

Here I am describing about the SQL Commands.

DDL

DDL is the short name of Data Definition Language. It used to create, update, and delete database schemas and their properties. It defines how data can be stored in the database.

DDL actions are:

  1. CREATE: Used to create a database and its objects like (table, index, views, store procedure, function, and triggers)
  2. ALTER: Update the structure of the existing database
  3. DROP: Delete schema from the database
  4. TRUNCATE: remove all records from a table even with its auto incremental ID
  5. RENAME: rename an object

DML

DML is the short name of Data Manipulation Language. It deals with data manipulation and includes the most common SQL commands such as SELECT, INSERT, UPDATE, DELETE, etc. It is used to store, modify, retrieve, delete, and update data in a database.

DML actions are:

  1. SELECT: Retrieve data from a database
  2. INSERT: Insert data into a table
  3. UPDATE: Updates existing data within a table
  4. DELETE: Delete records from a database table
  5. MERGE: For merging two rows or two tables

DCL

DCL is the short name of Data Control Language. It deals with the commands such as GRANT and mostly concerned with rights, permissions and other controls of the database system.

DCL actions are:

  1. GRANT: Allow users access privileges to the database
  2. REVOKE: withdraw users access privileges given by using the GRANT command

TCL

TCL is the short name of Transaction Control Language. It deals with a transaction within a database.

TCL actions are:

  1. COMMIT: Commits a Transaction
  2. ROLLBACK: Rollback a transaction in case of any error occurs
  3. SAVEPOINT: Roll back the transaction making points within groups
about author

admin

salmansrabon@gmail.com

If you like my post or If you have any queries, do not hesitate to leave a comment.

Leave a Reply

Your email address will not be published. Required fields are marked *