Is there any difference in speed between the following select statements?

SELECT yada,yda FROM test WHERE id IN(1,2,3) 

OR

SELECT yada,yda FROM test WHERE (id =1 or id = 2 or id =3) 

Reply via email to