Bluehost 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.

  1. From your account cpanel, go to the databases group of icons, and click on phpMyAdmin
  2. When prompted, login with your MySQL user password.
  3. 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.

  1. Click the SQL tab at the top.
  2. In the text box enter the following command:
    ALTER TABLE exampletable RENAME TO new_table_name;
  3. Replace exampletable with the name of your table.
  4. Replace new_table_name with the new name for your table.
  5. Click the go button

The database table should now have the new name.

Knowledgebase Article 313,727 views bookmark tags: databases mysql phpmyadmin


Was this resource helpful?

Did this resolve your issue?


Please add any other comments or suggestions about this content:





Recommended Help Content

Modifying table columns - phpMyAdmin

A step by step guide on how to manipulate data in your mySQL tables using phpMyAdmin

Dropping columns from a database table using PhpMyAdmin

A tutorial on how to perminately delete columns from your mySQL database using phpMyAdmin

How to Add Tables to a DB in PhpMyAdmin

Guidance on adding tables to your mySQL database in phpMyAdmin

Related Help Content

Managing Your DB Using phpmyadmin

A repository of information on how you can manage your database by using the phpMyAdmin interface.

How To Copy A Database Using PHPMyAdmin

A guide to duplicating a MySQL database using phpMyAdmin

Adding a column to a db table in phpMyAdmin

Instructions on adding a column to your database in phpMyAdmin

Searching a database in PhpMyAdmin

Step by step directions on how you can search your database using phpMyAdmin

Import a MySQL Database using phpMyAdmin

How do I import a backup of my database (.sql file) using phpMyAdmin?

How to Copy or Rename a Database

This article will walk you through the steps to copying and renaming a database with phpMyAdmin.

How to Create and Delete MySQL Databases and Users

This article will explain MySQL database and user creation and deletion, and explain how to assign a user to a database.

MySQL Repair and Optimize Tables in phpMyAdmin

How to repair and optimize your database using phpMyAdmin: