1.

Illustrate any two DML commands with the help of suitable example.

Answer»

Insert command is used to insert/add a tuple in a table.

Example: INSERT INTO Student 

VALUES (101,"Ananya", "Grover", 'F', '1984-08-11', 1);

DELETE

FROM Student

WHERE admno=101;



Discussion

No Comment Found

Related InterviewSolutions