Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SQL

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 )
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #inclusive #exclusive #sql
ADD COMMENT
Topic
Name
6+2 =