Multiple choice

Which SQL command deletes table from a database?

  1. DROP

  2. ERASE

  3. DELETE

  4. REMOVE

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

DROP completely removes a table and its structure from the database, including all data, indexes, and constraints. DELETE removes only the data rows while preserving the table structure.