I have a database where users can search for records that have on or more of a list of items. I'm using IN to do the search, but I can't get IN to work with prepared statements. This is what I've tried:
SELECT * FROM tbl1 WHERE col IN (?)
But the prepared statement treats the list of items I pass it as a single item. How can I make this work?
I'm using sqlite, if it makes any difference.