Question Details

Detailed explanation and options for the selected question.

Which SQL command is used to change the data type of a column in a table?

A. ALTER TABLE MODIFY COLUMN
B. CHANGE COLUMN TYPE
C. UPDATE TABLE COLUMN
D. ALTER COLUMN TYPE

Explanation:

ALTER TABLE MODIFY COLUMN is used to change the data type of a column. The other commands are invalid or not applicable for this operation.