View Single Post
  #19  
Old 07-03-2004, 01:28 AM
animepimp
Dragon
 
Join Date: Jan 2004
Posts: 860
Default

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.
Reply With Quote