How to rename mySQL table
There are several ways to rename an already created mySQL table:
RENAME TABLE `table_from` TO `table_to`;
Alternative solution:
ALTER TABLE `table_from` RENAME TO `table_to`;
Where:
`table_from` - the name of the table to be renamed
`table_to` - new table name
Comments