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

SQL
1

rename table column name in mysql

ALTER TABLE table_name CHANGE old_column_name new_column_name datatype(length);
Posted by: Guest on November-12-2020

Code answers related to "how to change the name of a column in mysql"

Code answers related to "SQL"

Browse Popular Code Answers by Language