is between inclusive or exclusive sql
# The BETWEEN operator is inclusive
# The expression:
a BETWEEN b AND c
# is really just shorthand, equivalent to this:
( a >= b AND a <= c )
# If that's not the condition you want,
# you can use different comparison operators:
( a > b AND a < c )