Is there a method to choose data if more than one requirement applies to the same field?
For example, I would usually write something like this:
select * from MYTABLE where age = 18 or age = 20 or age = 22
Is there a way to instead say something like:
select * from TABLE where field = 18 || 20 || 22
Can someone help me with this?