Answers for "dml"

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.
Posted by: Guest on December-14-2020
0

dml

1-It stands for Data Manipulation Language.
2-It is used to accessing and manipulating the data
organized by the appropriate data model.
Posted by: Guest on February-22-2021
0

dml commands

Create database university;
Create table students;
Create view for_students;
Posted by: Guest on December-01-2020
0

dml commands

CREATE TABLE TABLE_NAME (COLUMN_NAME DATATYPES[,....]);
Posted by: Guest on December-01-2020

Browse Popular Code Answers by Language