Is there any way to do what the following code does, using Zend_Db_Table_Abstract?
UPDATE table SET value=value+1 WHERE value < 10;
I tried something like:
$tableModel->update(array('value=value+1'),'value<10');
but no success.
I could fetch the data in a SELECT and then just add 1 to that, but that's no option, cause it's very slow.