Ok, so I have a query:
select distinct(a) from mytable where b in (0,3)
What is going to be faster, the above or
select di
As far as I know, IN converts to OR. So the performance is the same. Just a shorter way of writing it.
IN
OR