I know I can import a database dump like this:
mysql -u {{username}} -p {{target_database}} < myDump.sql
e.g.
mysql -u root -p theDatabase < myDump.sql
But how to import a database with foreign key check turned off?
I searched the mysql help for helpful parameters, but I found none:
mysql --help | findstr "foreign"
Returns nothing