Answers for "import sql in mysql command line"

SQL
7

mysql import sql file

mysql -u username -p database_name < file.sql
Posted by: Guest on February-10-2020
1

how to import mysql database command line

mysql>create database yourDatabaseName;
mysql>use yourDatabaseName;
Posted by: Guest on July-15-2020
0

mysql import command windows

C:\wamp\bin\mysql\mysql5.0.51b\bin>mysql -u root -p YourDatabaseName < YourFileName.sql
Posted by: Guest on July-04-2020
-1

import DB through mysql console

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

Code answers related to "import sql in mysql command line"

Code answers related to "SQL"

Browse Popular Code Answers by Language