Multiple choice Which command is used to remove a table or index from the database in SQL? Delete Table Drop table Erase Table 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.