Interview Questions

How can we change the name of a column of a table?

PHP Interview Questions and Answers


(Continued from previous question...)

How can we change the name of a column of a table?

This will change the name of column:

ALTER TABLE table_name CHANGE old_colm_name new_colm_name

(Continued on next question...)

Other Interview Questions