Export/Import mysql database

this post is about expoting/importing mysql databases:

Export database:

mysqldump -h host -u username -p database_name > export.sql

where “export.sql” is the file that will contain database to export

Import databse :

mysql -h host -u username -p database_name < import.sql

where “import.sql” is the file containing database to import

Leave a comment