problem with SELECT WHERE IN
I'm having a problem with a SELECT clause...
the variables...
<cfset MyString=#getProducts.matches_with#>
<cfset myArrayList = ListToArray(MyString)>
the query...
SELECT *
FROM pricelist
WHERE supplier_code IN ('#myArrayList[1]#' , '#myArrayList[2]#')
The problem is, the select clause is only ever retrieving one row, despite their being several matches
The clause works fine when I change the WHERE line to
WHERE supplier_code IN ('E1775' , 'R1771')
What am I doing wrong here ?
