I am trying to insert data from a csv file into mysql using BigDump.
It stops on line 2, with the error:
“Query: INSERT INTO location VALUES
(1,”O1″,””,””,””,0.0000,0.0000,, );MySQL: You have an error in your SQL
syntax; check the manual that
corresponds to your MySQL server
version for the right syntax to use
near ‘ )’ at line 1″
If I run the statement from withing phpmyadmin, it says:
“#1064 – You have an error in your SQL
syntax; check the manual that
corresponds to your MySQL server
version for the right syntax to use
near ‘ )’ at line 1”
What can I do to make the data get into the database?
Thank you.
The commas with no values looks sketchy to me.
should probably be
NULL);