Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles / database / MySQL

Duplicate MySQL Table Using phpMyAdmin

5.00/5 (1 vote)
15 Mar 2016CPOL1 min read 9.5K  
Duplicate MySQL table using phpMyAdmin

There many reasons for creating copies of existing relational database tables. Sometimes, you create duplicate tables for the purposes of table backup or for application testing purposes. Whatever your reasons may be, you will notice that different relational database integrated development environments (IDE) implement table duplication differently.

I would like to demonstrate how a duplication of a MySQL table can be achieved using phpMyAdmin. I was introduced to phpMyAdmin by my current website hosting provider as part of a content management system (CMS) package that I had signed up for. I’ve found phpMyAdmin to be an effective application for managing my website’s MySQL databases. The steps for doing all of this are quite simple:

Step 1

Login into your instance of phpMyAdmin and navigate to the Operations menu tab. You will notice that you are presented with several options underneath this menu tab – the one we are interested in, is at the bottom right with a heading as “Copy table to (database.table):“.

Image 1

 

Step 2

Select database and table that you want duplicated. There are also additional options that you can choose, i.e., do you want to duplicate the table’s structure only or do you want both structure and its content?

Image 2

Step 3

Finally, when you are done with your selections, press Go and you will receive a confirmation message box upon the completion of the duplication operation. As it can be seen below – I have successfully duplicated select SIFISO table into select SIFISO Bak table.

Image 3

It’s that simple, folks!

Until next time, cheers.

Image 4

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)