Answers for "how to modify column name in mysql table"

SQL
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 modify column name in mysql table"

Code answers related to "SQL"

Browse Popular Code Answers by Language