mysqlimport: error in syntax
i am trying to import a tab-delimited file into mysql. h开发者_StackOverflow中文版ere is how i am doing it:
mysqlimport c:\file.txt
whats wrong with the syntax?
load data local infile 'c:/calibration.txt' into table employees.calibration fields terminated by '\t' enclosed by '"' lines terminated by '\n';
精彩评论