I am having trouble with a query of mine working. The following query works just fine: UPDATE article SET newsletter_id = 2 WHERE article_id = 1
However the following query results in an error: UPDATE article SET newsletter_id = 2 WHERE article_id = 1, article_id = 2
Any thoughts?
-Cory
WHERE article_id = 1 OR article_id = 2
or
WHERE article_id IN (1, 2)
you don't like the mysql online documentation do you?