Which is faster?
SELECT UserName FROM dbo.UserTable WHERE UserID in (1,3,4)
SELECT UserName FROM dbo.UserTable WHERE UserID =
This is relevant when it comes to producing SQL via Linq. There are some instances where the sql created is in the form of: field='xxx' OR field='yyy'.