हाँ वहाँ है। यहां उत्पादों का उपयोग करने और मात्रा फ़ील्ड को बढ़ाने का एक उदाहरण दिया गया है:
$table = 'products';
$data = array('prd_qnty' => new Zend_Db_Expr('prd_qnty + 1'));
$where[] = $db->quoteInto('pr_id = ?', $this->pr_id);
$db->update($table, $data, $where);