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?

MySQL query to rename table: RENAME TABLE tbl_name TO new_tbl_name
or,
ALTER TABLE tableName CHANGE OldName newName.

(Continued on next question...)

Other Interview Questions