"how to export mysql database to another computer?" Code Answer

3

i use mysqldump to export the database. you can use something like

mysqldump -u [username] -p [database name] > backup.sql

to store it in a file. after that you can import into another database via

mysql -u [username] -p [database name] < backup.sql
By Jonalogy on March 30 2022

Answers related to “how to export mysql database to another computer?”

Only authorized users can answer the Search term. Please sign in first, or register a free account.