I have several sql files and I want to import all of them at once into a MySQL database.
sql
I go to PHPMyAdmin, access the databa
PHPMyAdmin
just type:
cat *.sql |mysql -uroot -p
and mysql will import all the sql file in sequence