Prev Next

Database / SQL

Different subsets of SQL.

SQL queries can be categories into 4 main Categories:

DDL (Data Definition Language).

As the name suggests, these types of queries are used to define the structure of data. Like the structure of a table, schema and modify it. Example,

  • CREATE: This command is used to create tables, database, schema etc.
  • DROP: This command is used to drop tables and other database objects.
  • ALTER: This command is used to alter the definition of database objects.
  • TRUNCATE: This command is used to remove tables, procedures, views, and other database objects.
  • ADD COLUMN: This command is used to add any column to the table schema.
  • DROP COLUMN: This command is used to drop a column from any table structure.

DML (Data Manipulation Language)

This type of queries is used to manipulate data in the database. Example,

  • SELECT INTO: This command is used to select data from one table and insert it into another table.
  • INSERT: This command is used to insert data/records into a table.
  • DELETE: This command is used to delete records from the table.
  • UPDATE: This command is used to update the value of any record in the database.

DCL (Data Control Language)

This category of SQL queries deals with the access rights and permission control of the database. Example,

  • GRANT: This command is used to grant access rights to database objects.
  • REVOKE: This command is used to withdraw permission from database objects.

TCL (Transaction Control Language)

The transaction is a set of commands that perform a specific task on objects in a single unit of execution. So TCL commands deals with transactions in a database. Example,

  • COMMIT: This command is used to commit a transaction. Once committed, it cannot be rolled back. This means the previous image of the database before running this transaction cannot be retrieved.
  • ROLLBACK: Rollback is used to revert the steps in transactions if an error occurs. SAVEPOINT: This command sets a savepoint in the transaction to which steps can be rolled back.
  • SET TRANSACTION: This command is used to set the characteristics of the transaction.

It's right time to invest in Cryptocurrencies Dogecoin! Earn free bitcoins up to $250 now by signing up.

Earn bitcoins upto $250 (free), invest in other Cryptocurrencies when you signup with blockfi. Use the referral link: Signup now and earn!

Using BlockFi, don't just buy crypto - start earning on it. Open an interest account with up to 8.6% APY, trade currencies, or borrow money without selling your assets.


Join CoinBase! We'll both receive $10 in free Bitcoin when they buy or sell their first $100 on Coinbase! Available in India also. Use the referral Join coinbase!


Invest now!!! Get Free equity stock (US, UK only)!

Use Robinhood app to invest in stocks. It is safe and secure. Use the Referral link to claim your free stock when you sign up!.

The Robinhood app makes it easy to trade stocks, crypto and more.


Webull! Receive free stock by signing up using the link: Webull signup.

More Related questions...

SQL to find 2nd highest salary in the Employee table. Difference between RANK and DENSE_RANK functions in SQL. Default behavior of NULL on ORDER BY Clause in SQL. How do I order NULLS first while performing ascending order in SQL? What is ROWID in SQL? Explain ROWNUM in Oracle. How the ROWNUM to be used together with the ORDER BY clause in SQL? What is Correlated subquery in SQL? What is cardinality? Explain bind variable in SQL. What is B-tree index? What is Clustered Index in SQL? What is NonClustered Index in SQL? Explain index in database. Explain composite index in database. What is self join In SQL? Explain ACID properties of database transactions. Difference between a super key and a candidate key. What is super key in database? What is the equivalent of GO statement in MySQL? Different types of JOIN in SQL. What is a cross join in SQL? Explain SQL SELF JOIN. Difference between primary key and unique key. Difference between view and materialized view in SQL. How do I find number of queries issued per hour in MySQL? Disadvantages of SQL indexing. Advantages of using SQL Index. Types of SQL index. Can a view have same name as table under same tablespace? What is the simplest way to find the second largest value using SQL? Hi, I am Vinay, My question is how to create Empid (ex:Empid: TCS-456) and to save in Mysql BD, if next, I enter other then it should be incremented like Empid: TCS-456/7/8/9..etc. What is the difference between Truncate & Delete? How do you find the second highest salary from a table? Explain different types of SQL joins. Different subsets of SQL. What are SQL constraints? SQL to find the 3rd highest salary. How to best display in Terminal a MySQL SELECT returning too many fields? Write a SQL query to display employee name, and salary where the salary is highest for each manager.
Show more question and Answers...

MongoDB Interview questions

Comments & Discussions