Index: documentation/manual/en/module_specs/Zend_Db_Select.xml =================================================================== --- documentation/manual/en/module_specs/Zend_Db_Select.xml (revision 19073) +++ documentation/manual/en/module_specs/Zend_Db_Select.xml (working copy) @@ -805,7 +805,32 @@ ]]> + + + You can pass an array as the second parameter to the + where() method when using the SQL IN operator. + + + + Example of an array parameter in the where() method + + select() + ->from('products', + array('product_id', 'product_name', 'price')) + ->where('product_id IN (?)', $productIds); +]]> + + + You can invoke the where() method multiple times on the same Zend_Db_Select object. The resulting query combines the