Documentation of 'org.tmatesoft.sqljet.core.schema.ISqlJetBetweenExpression' Java class
ISqlJetBetweenExpression
org.tmatesoft.sqljet.core.schema

Interface ISqlJetBetweenExpression

  • All Superinterfaces:
    ISqlJetExpression
    All Known Implementing Classes:
    SqlJetBetweenExpression


    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>

    • Method Detail

      • isNot

        boolean isNot()
        Checks is NOT used.
        Returns:
        true if NOT is used

DataMelt 3.0 © DataMelt by jWork.ORG

You see the box below because you did not login.