Class InSelectExpr

java.lang.Object
org.sqlite.parser.ast.InSelectExpr
All Implemented Interfaces:
Expr, ToSql

public class InSelectExpr extends Object implements Expr
Represents an IN expression with the right-hand side being a SELECT statement.
expr [NOT] IN (select-stmt)
  • Field Details

    • lhs

      public final Expr lhs
    • not

      public final boolean not
    • rhs

      public final Select rhs
  • Constructor Details

    • InSelectExpr

      public InSelectExpr(Expr lhs, boolean not, Select rhs)
  • Method Details