I've got several CSV files I want to import into a table. They all contain different numbers of columns, so some data will be absent during each import. I need a tool that will let me map which CSV column goes into which MySQL column. Doesn't look like MySQL workbench can do this. What else can I use?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
closed as not constructive by bažmegakapa, Jocelyn, Andrew Marshall, Jason Heine, the Tin Man Oct 27 '12 at 17:46
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
MySQL has the LOAD DATA INFILE syntax:
See the documentation about custom data handling. |
|||||||||
|
|
If you're running on a Mac, Sequel Pro is pretty good for this sort of thing (as long as you import each CSV file individually). |
||||
|
|