I love working with Linux and CLI. It helps boost speed to a great extent and it feels like Windows' xampp often limits that because I mostly tend to avoid using command line. I'm finally writing this to change that and be equally as proficient on Windows.
MySQL Bin Location {$xampp}/mysql/bin/mysql.exe
Mysqldump Bin Location {$xampp}/mysql/bin/mysqldump.exe
- Import files
- Login to mysql by running
{$xampp}/mysql/bin/mysql.exe -u user -p
- Select database by running
use {$database_name}
- Import a file by running
source {$path_to_file.sql}
- Export files
Export a table by running
mysql\bin\mysqldump.exe -u root -p database_name table > table.sql