Quantcast
Channel: LOAD DATA INFILE error 1064 - Stack Overflow
Browsing all 3 articles
Browse latest View live

Answer by Eric Leschinski for LOAD DATA INFILE error 1064

You have an error in your SQL syntax; Take a deep breath, this error is infurating and why MySQL sucks. You have a lot of work work to do to figure out what you did wrong:If you get this error it means...

View Article



Answer by Bill Karwin for LOAD DATA INFILE error 1064

http://dev.mysql.com/doc/refman/5.6/en/load-data.html shows the syntax. The clause naming columns goes after the IGNORE clause.LOAD DATA LOCAL INFILE 'books.csv' INTO TABLE BOOK FIELDS TERMINATED BY...

View Article

LOAD DATA INFILE error 1064

I am running this MySQL command:LOAD DATA LOCAL INFILE 'books.csv'INTO TABLE BOOK (Book_id, @dummy, Title, Publisher_name, @dummy, @dummy)FIELDS TERMINATED BY '\t'LINES TERMINATED BY '\r\n'IGNORE 1...

View Article
Browsing all 3 articles
Browse latest View live




Latest Images