I tried :

UPDATE closure JOIN item ON ( item_id = id ) SET checked = 0 WHERE ancestor_id = 1

Then :

UPDATE closure, item SET checked = 0 WHERE ancestor_id = 1 AND item_id = id

Both works with MySql but gives me a syntax error in SQLite.

How can I make this UPDATE / JOIN works with SQLite version 3.5.9 ?

link|improve this question

feedback

3 Answers

up vote 19 down vote accepted

You can't. SQLite doesn't support JOINs in UPDATE statements.

But, you can probably do this with a subquery instead:

UPDATE closure SET checked = 0 
WHERE item_id IN (SELECT id FROM item WHERE ancestor_id = 1);

Or something like that; it's not clear exactly what your schema is.

link|improve this answer
It works on the console, but still not using Java to call it. Anyway, one problem is solved, thanks :-) – e-satis Apr 21 '09 at 20:42
2  
Where this gets hairy is when what you need to do is copy a column from one table to another in order to reverse the direction of an association. where in MySQL you might do something like, create the foos.bar_id column, then update foos join bars on bars.foo_id = foos.id set foos.bar_id = bars.id, then drop the bars.foo_id column... how could this be done in SQLite? If anyone knows, I could sure use it. – centipedefarmer Jan 14 '11 at 23:52
feedback

I haven't use SQLLite but you could try this syntax:

UPDATE closure SET checked = 0 FROM closure

JOIN item ON ( item_id = id )

WHERE ancestor_id = 1

link|improve this answer
feedback

http://en.wikipedia.org/wiki/Merge_(SQL)

This shows some SQL'2008 command for update-with-join and maybe alternate syntax for it in SQLite

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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