Answers for "run mysql dump file from command line"

SQL
4

database dump mysql command

mysql -u username -p dbname < filename.sql
Posted by: Guest on May-20-2020
0

import mysql dump command line

mysql> use db_name;
mysql> source backup-file.sql;
Posted by: Guest on January-20-2021

Code answers related to "run mysql dump file from command line"

Code answers related to "SQL"

Browse Popular Code Answers by Language