public interface ISqlJetBetweenExpression extends ISqlJetExpression
The BETWEEN operator.
The BETWEEN operator is equivalent to a pair of comparisons. "a BETWEEN b AND c" is equivalent to "a>=b AND a<=c". The precedence of the BETWEEN operator is the same as the precedence as operators == and != and LIKE and groups left to right.
Format:
<expression> [NOT] BETWEEN <lowerBound> AND <upperBound>
Modifier and Type | Method and Description |
---|---|
ISqlJetExpression |
getExpression()
Expression.
|
ISqlJetExpression |
getLowerBound()
Lower bound.
|
ISqlJetExpression |
getUpperBound()
Upper bound.
|
boolean |
isNot()
Checks is NOT used.
|
getValue
ISqlJetExpression getExpression()
boolean isNot()
ISqlJetExpression getLowerBound()
ISqlJetExpression getUpperBound()
Copyright © 2009-2010 TMate Software Ltd. All Rights Reserved.