I can not find out the answer how to search for something like the following:
SELECT FROM Table where COLUMN IN (a, B).
What I want is to select from the table where Column is a subset of a AND b. Since the IN clause says column = a or column = b, I want column = a also column needs to b. The problem with using regular AND statements is that the COLUMN can have multiple fields.
Example imagine a List with (a, b, c, d, e) and the data is populated with rows like 1

a, b, d), 2: (a, c, d)
So if query the following SELECT FROM Table WHERE column = a and column =b. I should get back only "1" record and not "2" record. I don't get back anything. Because 1 = a and b and d.
How do I execute this type of query