Is there a way to select data where any one of multiple conditions occur on the same field?
Example: I would typically write a statement such as:
select
select * from TABLE where field IN (1,2,3)
You can also conveniently combine this with a subquery that only returns one field:
select * from TABLE where field IN (SELECT boom FROM anotherTable)