mysql query for change the table name code example
Example 1: how to alter table name in mysql
ALTER TABLE table_name
RENAME TO new_table_name;
Example 2: alter rename command in mysql
-- mysql
ALTER TABLE `members` CHANGE COLUMN `full_names` `fullname` char(250) NOT NULL;