how to change the name column of mysql code example
Example 1: how to alter table name in mysql
ALTER TABLE table_name
RENAME TO new_table_name;
Example 2: change column name mysql command line
ALTER TABLE `members` ADD COLUMN `credit_card_number` VARCHAR(25);