1.

Write the syntax for delete and insert commands in SQL.

Answer»

1. Syntax for delete:
DELETE from tablename WHERE condition;

2. Syntax for insert:
INSERT INTO tablename (col1, col2, …) VALUES (val1, val2….);



Discussion

No Comment Found

Related InterviewSolutions