Multiple choice

What is the difference between drop and delete?

  1. Both remove columns from table.

  2. Both remove rows from table.

  3. DELETE Statement is used to remove rows in a table while drop removes a column in a table.

  4. Both work in a similar way.

  5. None of these

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

As per the explanation of options 1 and 2, DELETE statement is used to remove rows in a table while drop removes a column in a table.