Question Details

Detailed explanation and options for the selected question.

Which of the following SQL commands is used to add a column to an existing table?

A. ALTER TABLE
B. ADD COLUMN
C. MODIFY TABLE
D. UPDATE TABLE

Explanation:

ALTER TABLE with ADD COLUMN is used to add a new column to an existing table. MODIFY TABLE and UPDATE TABLE are invalid commands.