I would like to create a mySQL select statement like this: Select * from table where tableid IN array[] Must I first iterate through the array and make a string that is a set? And then select where tableid is in that set? Thanx in advance.
The select statement needs to end up looking like
Select * from table where tableid IN (1,3,5,7)