Hi,
How do you add an IN() to a where using select? I am getting
IN('1,2,3') rather than IN(1,2,3), which gives incorrect result.
$select->from('product')
->where('categoryId IN(?)', $categoryId)
Thx
Hi,
How do you add an IN() to a where using select? I am getting
IN('1,2,3') rather than IN(1,2,3), which gives incorrect result.
$select->from('product')
->where('categoryId IN(?)', $categoryId)
Thx