Which of these is better to use in regard to performance? ...in regard to readability / understandability? ...in regard to accepted standards?
SELECT *
FROM Wherever
WHERE Greeting IN ('hello', 'hi', 'hey')
OR
SELECT *
FROM Wherever
WHERE Greeting = 'hello'
OR Greeting = 'hi'
OR Greeting = 'hey'
The first seems more intuitive / clear to me, but I'm unsure of accepted standards and performance.