Uses of Class
org.h2.command.dml.Query

Packages that use Query
org.h2.command.ddl Contains DDL (data definition language) and related SQL statements. 
org.h2.command.dml Contains DML (data manipulation language) and related SQL statements. 
org.h2.expression Expressions include mathematical operations, conditions, simple values, and functions. 
org.h2.index Various table index implementations, as well as cursors to navigate in an index. 
org.h2.table Classes related to a table and table meta data. 
 

Uses of Query in org.h2.command.ddl
 

Methods in org.h2.command.ddl with parameters of type Query
 void CreateTable.setQuery(Query query)
           
 void CreateView.setSelect(Query select)
           
 

Uses of Query in org.h2.command.dml
 

Subclasses of Query in org.h2.command.dml
 class Select
          This class represents a simple SELECT statement.
 class SelectUnion
          Represents a union SELECT statement.
 

Methods in org.h2.command.dml with parameters of type Query
 void Merge.setQuery(Query query)
           
 void Insert.setQuery(Query query)
           
 void SelectUnion.setRight(Query select)
           
 

Constructors in org.h2.command.dml with parameters of type Query
SelectUnion(Session session, Query query)
           
 

Uses of Query in org.h2.expression
 

Methods in org.h2.expression that return Query
 Query Subquery.getQuery()
           
 

Constructors in org.h2.expression with parameters of type Query
ConditionExists(Query query)
           
ConditionInSelect(Database database, Expression left, Query query, boolean all, int compareType)
           
Subquery(Query query)
           
 

Uses of Query in org.h2.index
 

Methods in org.h2.index with parameters of type Query
static IndexCondition IndexCondition.getInQuery(ExpressionColumn column, Query query)
          Create an index condition with the compare type IN_QUERY and with the given parameters.
 

Uses of Query in org.h2.table
 

Methods in org.h2.table that return Query
 Query TableView.recompileQuery(Session session)
          Re-compile the query, updating the SQL statement.
 

Methods in org.h2.table with parameters of type Query
static TableView TableView.createTempView(Session session, User owner, java.lang.String name, Query query, Query topQuery)
          Create a temporary view out of the given query.