Answers for "how to import sql file in phpmyadmin using command line"

SQL
3

how to import database in phpmyadmin

open phpmyadmin
from the menu navigate to the import tab
click choose file, and upload your sql file
**HINT**
the database should be created before importing the SQL file
Posted by: Guest on June-14-2021
3

mysql load sql from file

mysql> use db_name;
 mysql> source file_name.sql;
Posted by: Guest on April-29-2020

Code answers related to "how to import sql file in phpmyadmin using command line"

Code answers related to "SQL"

Browse Popular Code Answers by Language