select * from Table where column1 IN (value1, value2, value3)
The above query retrieves the records , for which column1's value is either value1 or value2 or value3. It doesn't matter if any of the 3 options are missing.
Is there a way to validate, the resultset of the query has got value1, value2, value3 records atleast once..??