Well, I was using Navicat for ages (old copy from where I used to work) but this solution is much faster:
Props to this guy, whoever he is - saved me hours today (something like 100k records from excel to mysql in a few minutes, thanks to DigDB and his trick)
Originally from - the jackol’s den » Import Excel/CSV into MySQL - Mikhail EstevesTo import an Excel file into MySQL, first export it as a CSV file. Remove the CSV headers from the generated CSV file along with empty data that Excel may have put at the end of the CSV file.
You can then import it into a MySQL table by running:
load data local infile 'uniq.csv' into table tblUniq
fields terminated by ','
enclosed by '"'
lines terminated by '\n'
(uniqName, uniqCity, uniqComments)
The fields here are the actual tblUniq table fields that the data needs to sit in. The enclosed by and lines terminated by are optional and can help if you have columns enclosed with double-quotes such as Excel exports, etc.
Props to this guy, whoever he is - saved me hours today (something like 100k records from excel to mysql in a few minutes, thanks to DigDB and his trick)