Answers for "how to update name of a column in mysql"

SQL
5

how to alter table column name in mysql

ALTER TABLE your_table_name RENAME COLUMN original_column_name TO new_column_name;
Posted by: Guest on August-28-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 update name of a column in mysql"

Code answers related to "SQL"

Browse Popular Code Answers by Language