Is there a way to pass a set of values as a parameter in an Oracle SQL Statement
问题 I would like to pass a set of values as a parameter to an Sql Statement (in vb.net). In my case: Users are allowed to upload a set of IDs, to check availability of an item. I would like to execute a statement that will return the items that match any of the IDs by doing something like the following: SELECT * FROM MyTable WHERE id IN ('123','456','789') But I cannot pass on the value ('123','456','789') as a parameter as it will be taken as an atomic value - a whole string, i.e., this will not