mysqlimport - how to import data from csv file to mysql table? -
i'm trying load data csv file mysql table(already created). loading failed. tried directly without using query "it shows error 23 rows skipped".
i used query:
load data infile 'c:\\users\username\documents\file.csv' table table1 lines seperated '\n';
please try maybe correct
load data local infile 'c:\users\username\documents\file.csv' table lines terminated '\n' (columns);
Comments
Post a Comment