Thursday, August 27, 2009

Rename or change name of MySQL table

SkyHi @ Thursday, August 27, 2009
If you change your mind and want to rename an existing MySQL table, with or without data in it, it is no problem. One simple command will change the table’s name.


To change the name of an existing table first to second, use this command as a user with adequate privileges:

RENAME TABLE first TO second;

It is good DBA manners to make sure that no one and no program are using this table before making the name change.

Reference: http://www.tech-recipes.com/rx/1486/rename-or-change-name-of-mysql-table/