The following simple statement:

INSERT INTO mydb.inventory (itemID) VALUES (:itemID) WHERE playerID = :ID;

Generates the following error:

ORA-00933: SQL command not properly ended

I have tried it without the semi-colon as well as with, but both give me the error. I am certain that the variables are being bound as well.

All my Google searches show that this is usually caused by an ORDER BY clause, but clearly I don't have one. =P

link|improve this question

17% accept rate
n/m. I just realized the folly in what I was trying to do. – rageingnonsense Jul 5 '10 at 18:06
feedback

3 Answers

You only define a WHERE clause if you are populating the INSERT statement with a SELECT. IE:

INSERT INTO mydb.inventory 
  (itemID)
SELECT :itemID FROM DUAL

Otherwise, you specify the values as-is:

INSERT INTO mydb.inventory 
  (itemID)
VALUES
  (:itemID)

You specify a WHERE clause when you are updating an existing record:

UPDATE mydb.inventory 
   SET itemid = :itemid
 WHERE playerid = :ID
link|improve this answer
feedback

An insert can not have a where clause. Perhaps you actually meant to update?

link|improve this answer
1  
An insert can have a WHERE clause if using a SELECT to populate the values. See my answer for details. – OMG Ponies Jul 5 '10 at 18:24
1  
@OMG - Mentally then (to me) the where is on the sub-select. But, yes. – Donnie Jul 6 '10 at 12:12
feedback

A where clause is rather unusual in an insert statement. Perhaps you're trying to update instead?

UPDATE mydb.inventory SET itemID = :itemID WHERE playerID = :ID;
link|improve this answer
2  
"unusual" is a somewhat understated description of something that is simply syntactically wrong. – Jeffrey Kemp Jul 6 '10 at 0:18
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.