I have a query like this: select a from some_table where b in (?);
I neet to bind 1000 items for b which likes:
select a from some_table where b in ('abc','bcd','acd',....x1000);
how can I bind this many parameters without actually put 1000 "?" in
the sql statement and write 1000 "sth->bind_param" in my code?
Thanks,
Adam.
