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

Popular posts from this blog

delphi - How to convert bitmaps to video? -

jasper reports - Fixed header in Excel using JasperReports -

python - ('The SQL contains 0 parameter markers, but 50 parameters were supplied', 'HY000') or TypeError: 'tuple' object is not callable -