DML quries code example
Example 1: dml commands
Create database university;
Create table students;
Create view for_students;
Example 2: dml commands
CREATE TABLE TABLE_NAME (COLUMN_NAME DATATYPES[,....]);
Create database university;
Create table students;
Create view for_students;
CREATE TABLE TABLE_NAME (COLUMN_NAME DATATYPES[,....]);