I have a lot of excel/ CSV files that I need to load into my db in MySQL Workbench (I'm on Mac OS X). I've searched around for a good walk-through or tutorial, but I haven't seen anything that clearly explains how to load CSVs into MySQL Workbench....can anyone help?
|
|
are you trying to load csv files into a MySQL table? You can do that easily with the Example:
You should be able to enter that command from any interface to MySQL. I'm assuming workbench has a way for you to execute sql queries. |
|||||||||||
|
|
Does it have to be Workbench? Can you use other MySQL bins? Here's an example: Create database Create table
|
|||||||
|
|
For reference, I wanted to do this on Windows and used HeidiSQL to accomplish the task. It was very straightforward, I used Tools -> Import CSV file and it worked on the first try. |
|||
|
|
|
This was convoluted for me, but here is what I did: I had PHPmyAdmin installed, so I exported to CSV w/ |
|||
|
|
|
Open the Excel file in Numbers iWork 9) and export to CSV. Import in MySQL with 'CSV with LOAD DATA' option works fine. |
|||
|
|
