How to copy a table from one mysql database to another mysql database

前端 未结 12 1490
一个人的身影
一个人的身影 2020-12-07 21:03

I need to copy a table from one database to another. This will be a cronjob. Which one is the best way to do it? PHP script or Shell Script. The problem with PHP, both datab

12条回答
  •  旧巷少年郎
    2020-12-07 21:33

    One liner with different servers

    mysqldump -h host1 -u user1 -ppassword1 databasename TblName | mysql -h host2 -u user2 -ppassword2 anotherDatabase
    

提交回复
热议问题