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 above

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

DROP is the SQL command used to permanently remove database objects like tables and indexes. DELETE removes rows from a table but doesn't delete the table structure itself. DROP is part of Data Definition Language (DDL) operations.