I have a trouble in restoring MySQL table back to the database from command line. Taking backup of a table is working with mysqldump.Taking backup and restoring of a database i
Best way to restore your database:
open cmd at bin folder
bin
login to mysql:
mysql -uroot -pyour_password show databases; use db_name;
now hit source and put the complete path from address bar where your sql file is stored and hit ;
for example :
source db_name.sql;