如何将php数组与sql IN运算符一起使用?
2022-08-30 11:06:27
我有两个值的数组,我想在选择查询中将其与sql IN运算符一起使用。
这是我的表的结构
id comp_id
1 2
2 3
3 1
我有一个有两个值的数组$arr
Array ( [0] => 1 [1] => 2 )
我想获取comp_id 1 和 comp_id 2 的记录。所以我写了以下查询。
SELECT * from table Where comp_id IN ($arr)
但它不返回结果。