Interview Questions

How can we change the data type of a column of a table?

PHP Interview Questions and Answers


(Continued from previous question...)

How can we change the data type of a column of a table?

This will change the data type of a column:

ALTER TABLE table_name CHANGE colm_name same_colm_name [new data type]

(Continued on next question...)

Other Interview Questions