1.

Give the syntax and example for DELETE command in SQL.

Answer»

It is used to delete/remove the tuples/rows from the table.
Syntax:
DELETE from tablename [WHERE Condition];
Example:
DELETE from student;



Discussion

No Comment Found

Related InterviewSolutions