mysql alter change column code example
Example 1: how to alter table column name in mysql
ALTER TABLE your_table_name RENAME COLUMN original_column_name TO new_column_name;
Example 2: add new column to the table mysql
ALTER TABLE `TABLE_NAME`
ADD `COLUMN_NAME` VARCHAR(50) NULL
AFTER `COLUMN_NAME_AFTER`;