Question Details

Detailed explanation and options for the selected question.

What is the purpose of the SQL DROP command?

A. To delete an entire database or table
B. To delete rows from a table
C. To update specific rows in a table
D. To filter rows based on a condition

Explanation:

DROP deletes an entire database or table. DELETE removes rows, UPDATE modifies rows, and WHERE filters rows.