OK, guys, that was interesting. Now let's see how well you know mysqlimport...
I have a table with cols A, B, and C.
I have a textfile with cols
Z,Y,A,C,B,D
I am hoping to be able to use the --columns='' feature on mysqlimport, but can't figure out how to get it to ignore certain columns.
In other words, I can do --columns='A,C,B' and it would know to put them in the right spots, but I can't seem to do it all, which would mean ignoring the other columns.
Here's what I am trying, which doensn't work:
--columns=',,A,C,B,' but it throws an error. What should I put in place of blanks to have mysqlimport skip those columns?