Answers for "how to rename of column in mysql"

SQL
7

rename table in mysql

RENAME TABLE old_table TO new_table;
Posted by: Guest on May-04-2020
1

change column name mysql

ALTER TABLE tableName CHANGE `oldcolname` `newcolname` datatype(length);
(you can remove the backticks if it doesn't work)
Posted by: Guest on June-06-2020

Code answers related to "how to rename of column in mysql"

Code answers related to "SQL"

Browse Popular Code Answers by Language