Multiple choice

Which command is used to remove a table or index from the database in SQL?

  1. Delete Table

  2. Drop Table

  3. Erase Table

  4. None of the above

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

The DROP TABLE command permanently removes a table and its data from the database, along with any associated indexes, constraints, and dependencies. DELETE removes rows but keeps the table structure.