Login
Remember
Register
Ask a Question
What are the subsets of SQL?
0
votes
asked
Nov 5, 2021
in
Sql
by
rajeshsharma
What are the subsets of SQL?
sql-subsets
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Nov 5, 2021
by
rajeshsharma
The following are the four significant subsets of the SQL:
Data definition language (DDL): It defines the data structure that consists of commands like CREATE, ALTER, DROP, etc.
Data manipulation language (DML): It is used to manipulate existing data in the database. The commands in this category are SELECT, UPDATE, INSERT, etc.
Data control language (DCL): It controls access to the data stored in the database. The commands in this category include GRANT and REVOKE.
Transaction Control Language (TCL): It is used to deal with the transaction operations in the database. The commands in this category are COMMIT, ROLLBACK, SET TRANSACTION, SAVEPOINT, etc.
...