How to rename a table in MySQL and PHPMyAdmin
Below is how you rename a table in mysql or phpmyadmin
RENAME TABLE first TO second
replace first with the name of the original table and second with the new name. Its good practice to have backups of the database just in case.



