Created
December 18, 2012 13:13
-
-
Save biswarupadhikari/4327881 to your computer and use it in GitHub Desktop.
All All Mysql Data From One Table to Another
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
INSERT INTO mydb.test2 SELECT * FROM mydb.test | |
The above query will copy all data from test table to test2 table. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment