Data Query Language (DQL) Queries:
Purpose: These queries are used to retrieve data from the database.
Key SQL Statement: SELECT
Examples:
Data Definition Language (DDL) Queries:
Purpose: These queries are used to define, modify, or delete database structures and objects.
Key SQL Statements: CREATE
, ALTER
, DROP
,TRUNCATE
Examples:
Data Manipulation Language (DML) Queries:
Purpose: These queries are used to insert, update, and delete data in the database.
Key SQL Statements: INSERT
, UPDATE
, DELETE
Examples:
Data Control Language (DCL) Queries:
GRANT
, REVOKE
These four types of queries cover the primary operations performed in a relational database system. DQL queries are used for data retrieval, DDL queries for defining and modifying database structures, DML queries for data manipulation, and DCL queries for controlling data access and permissions.