We have a large table with lots or rows. One of the columns has the values either 0,1,2.
Is it faster to do a query such as
or
Is it faster to do a query such as
WHERE columnid > 0
or
WHERE columid=1 OR columid=2
Comment