vote up 3 vote down star

I've tried searching through search engines,MSDN,etc. but can't anything. Sorry if this has been asked before. Is there any performance difference between using the T-SQL "Between" keyword or using comparison operators?

flag

65% accept rate

2 Answers

vote up 10 vote down check

You can check this easily enough by checking the query plans in both situations. There is no difference of which I am aware. There is a logical difference though between BETWEEN and "<" and ">"... BETWEEN is inclusive. It's equivalent to "<=" and "=>".

link|flag
Good point. A subtlety I hadn't noticed. – Nick DeVore May 28 at 14:59
vote up -1 vote down

The two operators that are being compared to one another here are fundamentally different and hence why the execution plans that are generated are also likely to be different (although not guaranteed).

The determining factor is the data distribution (selectivity) of the column that the comparison operators are applied to. This along with Statistics will dictate whether or not an index is or is not used etc.

Hope this makes sense.

link|flag
Not sure exactly why this was voted down. Did John say something that was wrong? Someone not feeling very good? Anyone have any ideas? – wcm May 28 at 15:40
I never altered the original question. I also didn't down vote. – James Alexander May 28 at 16:07

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.