HostGator Web Hosting Help
How To Rename Database Tables in PHPMyAdmin
How to rename database tables in phpMyAdmin
Overview
This article will show you how to rename a database table in phpMyAdmin.
What You Need
- Your MySQL Password, most of the time this is the same as the cPanel password
- You need to be able to access the cpanel on your account
Access The Database
These steps explain how to access phpMyAdmin.
- From your account cpanel, go to the databases group of icons, and click on phpMyAdmin
- When prompted, login with your MySQL user password.
- From the list of databases, select the database that contains the table you wish to rename.
Running The Alter Command
Once you have the correct database selected, these steps will explain how to run an alter command to rename your table.
- Click the SQL tab at the top.
-
In the text box enter the following command:
ALTER TABLE exampletable RENAME TO new_table_name;
- Replace exampletable with the name of your table.
- Replace new_table_name with the new name for your table.
- Click the go button
The database table should now have the new name.
Knowledgebase Article
321,877 views
bookmark
share
tags: databases mysql phpmyadmin
Share or save this via:
Recommended Help Content
A step by step guide on how to manipulate data in your mySQL tables using phpMyAdmin
A tutorial on how to perminately delete columns from your mySQL database using phpMyAdmin
Guidance on adding tables to your mySQL database in phpMyAdmin
Knowledgebase Article
113,930 views
tags: mysql phpmyadmin
Related Help Content
A repository of information on how you can manage your database by using the phpMyAdmin interface.
A guide to duplicating a MySQL database using phpMyAdmin
Instructions on adding a column to your database in phpMyAdmin
Step by step directions on how you can search your database using phpMyAdmin
How do I import a backup of my database (.sql file) using phpMyAdmin?
This article will walk you through the steps to copying and renaming a database with phpMyAdmin.
Knowledgebase Article
160,972 views
tags: database phpmyadmin
This article will explain MySQL database and user creation and deletion, and explain how to assign a user to a database.
How to repair and optimize your database using phpMyAdmin: