Is there an equivalent to the following SQL using the Zend_Db modules?
UPDATE items,month SET items.price=month.price
WHERE items.id=month.id;
The mysql manual states
... multiple-table UPDATE statements can use any type of join permitted in SELECT statements, such as LEFT JOIN.