DML code example

Example 1: what is data manipulation language

DML
1-It stands for Data Manipulation Language.
2-It is used to add, retrieve or update the data.
3-It add or update the row of the table. These rows are called as tuple.
4-It is further classified into Procedural and Non-Procedural DML.
5-BASIC command present in DML are UPDATE, INSERT, MERGE etc.
6-While DML uses WHERE clause in its statement.

Example 2: dml

1-It stands for Data Manipulation Language.
2-It is used to accessing and manipulating the data
organized by the appropriate data model.

Example 3: dml commands

CREATE TABLE TABLE_NAME (COLUMN_NAME DATATYPES[,....]);

Example 4: dml commands

Create database university;
Create table students;
Create view for_students;

Tags:

Misc Example