请问带in查询的语句应该怎么绑定?
比如
select * from table where id in(1,2,3);我绑定成 select * from table where id in(:id1,:id2,:id3)然后给:id1,:id2,:id3分别赋值执行,可是会返回一个参数错误