CBSE Class 12 Computer Science
Question 53 of 79
Table Creation and Data Manipulation Commands — Question 8
Back to all questions| DROP TABLE | DROP DATABASE |
|---|---|
| This command is used to delete a specific table from the database along with all its data, indexes, triggers, and constraints. | This command is used to delete an entire database including all its tables, views, stored procedures, triggers, and other objects. |
The syntax is : DROP TABLE table_name;. | The syntax is : DROP DATABASE database_name;. |