Answers for "how ti change the name of a column in mysql"

SQL
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 ti change the name of a column in mysql"

Code answers related to "SQL"

Browse Popular Code Answers by Language