| Message: 1004942 |
 |
BY: Josh Cooley (jbcooley) DATE: 2009-05-09 23:45 SUBJECT: RE: Sending a list in the statement You already have an array, you don't need to run it through STRING_TO_ARRAY. Try this:
SELECT product_id, product, qty FROM products where product_id = ANY(:productIdList)
That's a modified version of the query in your first post. | |