How to Rename a Table in MySQL

To rename a table in MySQL use the next alter table:

alter table employee rename to employee_old;

IN THIS PAGE