Answers for "import the database file into a mysql database server"

SQL
1

import database mysql command line

mysql -u username -p new_database < data-dump.sql
Posted by: Guest on September-13-2020
0

import mysql db

zcat /path/to/file.sql.gz | mysql -u 'root' -p your_database
Posted by: Guest on October-19-2020

Code answers related to "import the database file into a mysql database server"

Code answers related to "SQL"

Browse Popular Code Answers by Language