0 votes
in Sql by
What is the purpose of DML Language?

1 Answer

0 votes
by

Data manipulation language makes the user able to retrieve and manipulate data in a relational database. The DML commands can only perform read-only operations on data. We can perform the following operations using DDL language:

Insert data into the database through the INSERT command.

Retrieve data from the database through the SELECT command.

Update data in the database through the UPDATE command.

Delete data from the database through the DELETE command.

Example

INSERT INTO Student VALUES (111, 'George', 'Computer Science')

Related questions

+1 vote
asked Feb 28, 2020 in DBMS by rahuljain1
0 votes
asked May 15, 2020 in DBMS by sharadyadav1986
...