For instance can
select foo from bar where foo between 5 and 10
select 5 and 10 or they are excluded from the range?
| |||||||||||
feedback
|
|
The BETWEEN operator is inclusive. Form BOL:
| |||
|
feedback
|
|
Yes, but be careful when using between for dates.
is really interpreted as 12am, or
so will miss anything that occurred during the day of Jan 31st. In this case, you will have to use:
or
UPDATE: It is entirely possible to have records created within that last second of the day, with a datetime as late as For this reason, the Use the | ||||
feedback
|
|
Real world example from SQL Server 2008.
| |||
|
feedback
|
| |||
|
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..
| |||
|
feedback
|
