Development tips, help, and suggestions for building performant websites
MySQL – Rename Column
ALTER TABLE `table_name` CHANGE `old_col_name` `new_col_name` `col_data_type`;
ALTER TABLE `table_name` CHANGE `old_col_name` `new_col_name` `col_data_type`;