Answers for "import db mysql command line position"

SQL
0

import DB through mysql console

mysql> use db_name; 
mysql> source folder_path/file_name.sql;
Posted by: Guest on January-22-2021
0

import database mysql command line

mysql> create new_database;
mysql> use new_database;
mysql> source (Here you need to import the path of the SQL file);

E.g.:
mysql> source E:/test/dump.sql;
Posted by: Guest on January-13-2022

Code answers related to "import db mysql command line position"

Code answers related to "SQL"

Browse Popular Code Answers by Language