Answers for "how to rename the column in mysql"

SQL
7

rename table in mysql

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

change column name in mysql

ALTER TABLE tableName CHANGE `oldcolname` `newcolname` datatype(length);
Posted by: Guest on August-19-2020

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

Code answers related to "SQL"

Browse Popular Code Answers by Language