Data Manipulation Language (DML) is used to query data as well as insert, delete and alter tuples
Explanation:
DDL (Data Definition Language):
It is responsible for the database's generation and destruction. It includes statements for creating/defining databases, modifying their structure once they've been formed, and destroying them when they're no longer needed.
Data Manipulation Language (DML)
Data Manipulation Language (DML) is a programming language that allows you to manipulate data. It's used to work with the database.
Inserting, modifying, deleting, or querying data in a database is referred to as manipulation.
It allows users to view or manipulate data that has been structured according to the relevant data model.
DCL (Data Control Language)
DCL (Data Control Language) is a programming language for granting and robbing database access, auditing database usage, and managing with transactions.
It explains how to limit a user's or a group of users' access to only particular parts of the data and to run only certain types of queries.
TCL (Transaction Control Language):
TCL (Transaction Control Language):is a programming language that is used to control the changes produced by DML statements.
It defines how transactions are started and ended, as well as how a group of concurrently running transactions is managed.
#SPJ2