Multiple choice

Which command is used to remove a table from memory?

  1. DELETE

  2. DROP

  3. TRUNCATE

  4. REMOVE

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

The DROP command is used to completely remove a table structure and all of its data from the database. DELETE and TRUNCATE remove rows from a table but keep the table structure intact.