Question Details

Detailed explanation and options for the selected question.

Which SQL command is used to remove a column from an existing table?

A. ALTER TABLE DROP COLUMN
B. DELETE COLUMN
C. REMOVE COLUMN
D. MODIFY COLUMN

Explanation:

ALTER TABLE DROP COLUMN removes a column from a table. DELETE COLUMN, REMOVE COLUMN, and MODIFY COLUMN are not valid SQL commands.