tags:

views:

51

answers:

1

i am trying to import a tab-delimited file into mysql. here is how i am doing it:

mysqlimport c:\file.txt

whats wrong with the syntax?

+1  A: 
load data local infile 'c:/calibration.txt' into table employees.calibration fields terminated by '\t' enclosed by '"' lines terminated by '\n';
I__