Quote:
Code:
Error in query 'INSERT INTO name_filter SET name = 'Draupner''
|
This is not a proper insert. This is the syntax for UPDATE with the first word changed. The proper syntax for INSERT INTO is as follows.
Code:
INSERT INTO name_filter (name, column2, column3, column4) values ('Draupner', value2, value3, value4);
You need to fill all the columns at once even if you usee only default values or something.