I need to import multiple dump files to mysql using windows command prompt.
How can I import files.
mysql -hlocalhost -uroot -proot -P3306 --databases db1,db2<db1.sql,db2.sql
I tried like this but its not working. How can i write this kind of a command in a bat file.
Thanks