CBSE Class 12 Computer Science Question 44 of 79

Table Creation and Data Manipulation Commands — Question 4

Back to all questions
4
Question

Question 4

DELETE from <table> command is same as DROP TABLE command.

Answer

False

Reason — DELETE from <table> command is used to remove all the contents from the table, leaving it empty. On the other hand, the DROP TABLE command is used to delete the table from the database along with all its data and structure.