Restoring a MySQL table back to the database

后端 未结 4 923
栀梦
栀梦 2021-02-04 01:36

I have a trouble in restoring MySQL table back to the database from command line. Taking backup of a table is working with mysqldump.Taking backup and restoring of a database i

4条回答
  •  北荒
    北荒 (楼主)
    2021-02-04 02:08

    Taking backup

    mysqldump -u -p mydatabase table1 > database_dump.sql
    

    restoring from backup flie need not include table name

    mysql -u -p mydatabase < database_dump.sql
    

提交回复
热议问题