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

SQL
1

how to alter table name in mysql

RENAME TABLE old_name TO new_name;
-- or
ALTER TABLE old_name RENAME TO new_name; 
-- or
ALTER TABLE old_name RENAME new_name;
Posted by: Guest on May-09-2021
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

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

Code answers related to "SQL"

Browse Popular Code Answers by Language