Answers for "mysql import sql from command line"

SQL
2

import sql file mysql commadn line

mysql -u username -p database_name < file.sql
Posted by: Guest on January-20-2021
2

mysql import from sql file

mysql -u username -p database_name < file.sql
; OR
 mysql> use db_name;
 mysql> source file_name.sql;
Posted by: Guest on August-26-2020

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

Code answers related to "SQL"

Browse Popular Code Answers by Language