I am trying to update a row in a table which has no unique index. So, I selected the ROWID of the row I want to update and now I want to update the row like this:

UPDATE MYTABLE SET MYCOLUMN = 0 WHERE ROWID = "AAAIWWAAFAAApwDADR"

MYCOLUMN is of type NUMBER(1)

I get the error: invalid identifier [SQL State=42000, DB Errorcode=904]

Any idea why?

link|improve this question

71% accept rate
2  
You could also consider the SELECT ... FOR UPDATE syntax, which implicitly uses ROWID so you don't have to deal with it, for a more general case where you aren't hard-coding the value. – Alex Poole Feb 16 '11 at 14:44
feedback

1 Answer

up vote 6 down vote accepted

Try using single quotes:

UPDATE MYTABLE SET MYCOLUMN = 0 WHERE ROWID = 'AAAIWWAAFAAApwDADR'
link|improve this answer
Brilliant - thank you! I will mark this answer as correct as soon as it will let me! – SlappyTheFish Feb 16 '11 at 10:42
Glad it helped! – Pablo Santa Cruz Feb 16 '11 at 10:44
feedback

Your Answer

 
or
required, but never shown

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