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
You can still use in for
select * from table where field = '1' or field = '2' or field = '3'
its just
select * from table where field in ('1','2','3')