CBSE Class 12 Computer Science
Question 5 of 79
Table Creation and Data Manipulation Commands — Question 5
Back to all questions(d)
Assertion is false but Reason is true.
Explanation
The DELETE command removes rows from a table while leaving the table structure intact. It does not delete the entire table, instead, it removes specific rows within it. On the other hand, the DROP TABLE command in SQL deletes a table from the database, including its structure and all its data. So, while both commands involve deletion, they operate on different levels: the DELETE command removes rows, while the DROP TABLE command removes the entire table.