For instance can select foo from bar where foo between 5 and 10 select 5 and 10 or they are excluded from the range?

link|improve this question

73% accept rate
why not just try this out yourself by writing a query? – KM. Apr 15 '09 at 17:55
2  
Obviously I couldn't at the time due to issues with SQL Server. – Lea Verou Apr 15 '09 at 21:49
1  
@KM, because at SO we like to ask questions that show up on the google interwebs thang :P – toor Feb 21 at 7:24
feedback

5 Answers

up vote 28 down vote accepted

The BETWEEN operator is inclusive.

Form BOL:

BETWEEN returns TRUE if the value of test_expression is greater than or equal to the value of begin_expression and less than or equal to the value of end_expression.

link|improve this answer
feedback

Yes, but be careful when using between for dates.

BETWEEN '01/01/2009' AND '01/31/2009'

is really interpreted as 12am, or

BETWEEN '01/01/2009 00:00:00' AND '01/31/2009 00:00:00'

so will miss anything that occurred during the day of Jan 31st. In this case, you will have to use:

myDate >= '01/01/2009 00:00:00' AND myDate < '02/01/2009 00:00:00'  --CORRECT!

or

BETWEEN '01/01/2009 00:00:00' AND '01/31/2009 23:59:59' --WRONG! (see update!)

UPDATE: It is entirely possible to have records created within that last second of the day, with a datetime as late as 01/01/2009 23:59:59.997!!

For this reason, the BETWEEN (firstday) AND (lastday 23:59:59) approach is not recommended.

Use the myDate >= (firstday) AND myDate < (Lastday+1) approach instead.

Good article on this issue here.

link|improve this answer
Similar issues with strings as well WHERE col BETWEEN 'a' AND 'z' will exclude most of the z rows for example. – Martin Smith Apr 22 '11 at 10:29
feedback

Real world example from SQL Server 2008.

alt text

link|improve this answer
+1 thanks very much... – Abu Hamzah Aug 3 '10 at 15:24
feedback

BETWEEN (Transact-SQL)

Specifies a(n) (inclusive) range to test.

test_expression [ NOT ] BETWEEN begin_expression AND end_expression

Arguments

test_expression

Is the expression to test for in the range defined by begin_expression and end_expression. test_expression must be the same data type as both begin_expression and end_expression.

NOT

Specifies that the result of the predicate be negated.

begin_expression

Is any valid expression. begin_expression must be the same data type as both test_expression and end_expression.

end_expression

Is any valid expression. end_expression must be the same data type as both test_expression and begin_expression.

AND

Acts as a placeholder that indicates test_expression should be within the range indicated by begin_expression and end_expression.

Remarks

To specify an exclusive range, use the greater than (>) and less than operators (<). If any input to the BETWEEN or NOT BETWEEN predicate is NULL, the result is UNKNOWN.

Result Value

BETWEEN returns TRUE if the value of test_expression is greater than or equal to the value of begin_expression and less than or equal to the value of end_expression.

NOT BETWEEN returns TRUE if the value of test_expression is less than the value of begin_expression or greater than the value of end_expression.

link|improve this answer
feedback

if you hit this, and don't really want to try and handle adding a day in code, then let the DB do it..

myDate >= '01/01/2009 00:00:00' AND myDate < DATEADD(day,1,'01/01/2009 00:00:00')
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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