to create modify and delete data structure _____ is used.
(a)data definition language
(b)data manipulation language
(c)data control language
(d)data query language
Answers
Answer:
The correct answer to the given question is:
(b)data manipulation language
Explanation:
Data manipulation language, or DML, is a subset of operations used to insert, delete, and update data in a database. DML is often a sub-language of a larger language like SQL. DML contains some language sentences. Read-only data selection is closely related to the DML component and is sometimes referred to as the DML component because some users can make both read and write selections.
DML stands for Data Manipulation Language. Represents a set of programming languages that are explicitly used to make changes to the database. Example:
CRUD operations for creating, reading, updating, and deleting data.
There are four commands INSERT, SELECT, UPDATE, and DELETE commands.
DML commands are often part of a larger database language such as Structured Query Language (SQL). These DMLs may have special syntax for handling data in that language. There are two main classifications in
DML: procedural programming and non-procedural programming, also known as declarative programming. SQL related to manipulating data that exists in a database refers to DML or data manipulation language, including most SQL statements.
#SPJ3