Uses of Class
org.h2.command.query.Select
-
Packages that use Select Package Description org.h2.command This package contains the parser and the base classes for prepared SQL statements.org.h2.command.query Contains queries.org.h2.expression.aggregate Aggregate functions.org.h2.expression.analysis Base classes for data analysis operations and implementations of window functions.org.h2.table Classes related to a table and table meta data. -
-
Uses of Select in org.h2.command
Fields in org.h2.command declared as Select Modifier and Type Field Description private Select
Parser. currentSelect
Methods in org.h2.command that return Select Modifier and Type Method Description private Select
Parser. parseSelect(int start)
Methods in org.h2.command with parameters of type Select Modifier and Type Method Description private void
Parser. parseSelectExpressions(Select command)
private void
Parser. parseSelectFromPart(Select command)
-
Uses of Select in org.h2.command.query
Fields in org.h2.command.query declared as Select Modifier and Type Field Description private Select
Select. parentSelect
Parent select for selects in table filters.private Select
SelectListColumnResolver. select
Methods in org.h2.command.query that return Select Modifier and Type Method Description Select
Select. getParentSelect()
Returns parent select, or null.Select
SelectListColumnResolver. getSelect()
Constructors in org.h2.command.query with parameters of type Select Constructor Description Select(SessionLocal session, Select parentSelect)
SelectListColumnResolver(Select select)
-
Uses of Select in org.h2.expression.aggregate
Methods in org.h2.expression.aggregate that return Select Modifier and Type Method Description Select
Aggregate. getSelect()
Returns the select statement.Constructors in org.h2.expression.aggregate with parameters of type Select Constructor Description AbstractAggregate(Select select, Expression[] args, boolean distinct)
Aggregate(AggregateType aggregateType, Expression[] args, Select select, boolean distinct)
Create a new aggregate object.JavaAggregate(UserAggregate userAggregate, Expression[] args, Select select, boolean distinct)
-
Uses of Select in org.h2.expression.analysis
Fields in org.h2.expression.analysis declared as Select Modifier and Type Field Description protected Select
DataAnalysisOperation. select
SELECTConstructors in org.h2.expression.analysis with parameters of type Select Constructor Description DataAnalysisOperation(Select select)
WindowFunction(WindowFunctionType type, Select select, Expression[] args)
Creates new instance of a window function. -
Uses of Select in org.h2.table
Fields in org.h2.table declared as Select Modifier and Type Field Description private Select
TableFilter. select
Methods in org.h2.table that return Select Modifier and Type Method Description default Select
ColumnResolver. getSelect()
Get the select statement.Select
TableFilter. getSelect()
Constructors in org.h2.table with parameters of type Select Constructor Description TableFilter(SessionLocal session, Table table, java.lang.String alias, boolean rightsChecked, Select select, int orderInFrom, IndexHints indexHints)
Create a new table filter object.
-