Overview
When you are working on a Development system it is often desirable to have a copy of a Production system database table. mySQL provides a handy method of making a copy of a single table and an easy path to extract the data from the production table and insert it into the development copy of the table.
In the example below, we will copy the "customers" table form the Production DataBase to our Develpment DataBase without using mysqldump to dump the entire database to a file.
Instructions
- Login to the MySQL shell:
mysql --user=<username> --password=<password>
- Select the database you wise to replace:
use mydevdatabase;
- Drop the old table:
DROP TABLE mydevdatabase.customers;
- Create the table based on the database you wish to copy:
CREATE TABLE mydevdatabase.customers LIKE myproductiondatabase.customers;
- Then, copy all of the data:
INSERT INTO mydevdatabase.customers SELECT * FROM myproductiondatabase.customers;
- You should then see a confirmation of how many records were inserted.
If you need to copy a whole database instead of just one table, please see this article: How to copy a MySQL database.