0% found this document useful (0 votes)
15 views

Week 08 - Tutorial Lab Sheet DML

DML (Data Manipulation Language) is a subset of SQL used for inserting, deleting, and updating data in a database. It includes commands like INSERT to populate tables, UPDATE to modify existing records, and DELETE to remove records. DML allows manipulating data by controlling access to both data and the database through SQL statements.

Uploaded by

Tuan Ajreen
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
15 views

Week 08 - Tutorial Lab Sheet DML

DML (Data Manipulation Language) is a subset of SQL used for inserting, deleting, and updating data in a database. It includes commands like INSERT to populate tables, UPDATE to modify existing records, and DELETE to remove records. DML allows manipulating data by controlling access to both data and the database through SQL statements.

Uploaded by

Tuan Ajreen
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2

What is DML (Data Manipulation Language):

DML stands for data manipulation language, and it is a subset of structured query language
(SQL) that is used for adding (inserting), deleting, and altering (updating) data in a database,
So the SQL instructions that deal with the alteration of data stored in a database are classified
as DML, or Data Manipulation Language, and this category comprises the majority of SQL
statements as well. In an SQL statement, it is the component that controls access to data as
well as access to the database.

List of DML commands:

INSERT : It is utilized in the process of populating data into a table.


UPDATE : It is used to make changes to data that has already been entered
into a table.
DELETE : It is used to remove records from a table in a database.
Consider the following relational model created in the previous tutorial of DDL.

1. Insert sample records to the tables


2. Modify the existing records.
3. Delete the records.

You might also like