Answers for "rename column mysql with compost names"

SQL
1

rename column 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
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 "rename column mysql with compost names"

Code answers related to "SQL"

Browse Popular Code Answers by Language