Created
June 15, 2011 18:29
-
-
Save boywhoroared/1027751 to your computer and use it in GitHub Desktop.
MYSQL: Copy tables from one schema to another (uses mysql client)
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
mysqldump -u(username) -p(password) (source database name) (table names...) | mysql -u(username) -p(password) (destination database name) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment