public interface SelectBuilder
Select statement.StatementBuilder| Modifier and Type | Interface and Description |
|---|---|
static interface |
SelectBuilder.BuildSelect
Interface exposing the
Select build method. |
static interface |
SelectBuilder.SelectAndFrom
Builder exposing
SELECT and FROM methods. |
static interface |
SelectBuilder.SelectFrom
Builder exposing
FROM methods. |
static interface |
SelectBuilder.SelectFromAndJoin
Builder exposing
FROM, JOIN, WHERE, LIMIT/OFFSET and LOCK methods. |
static interface |
SelectBuilder.SelectFromAndJoinCondition
Builder exposing
FROM, WHERE, LIMIT/OFFSET, JOIN AND and LOCK continuation methods. |
static interface |
SelectBuilder.SelectFromAndOrderBy
Builder exposing
FROM, JOIN, WHERE, LIMIT/OFFSET and LOCK methods. |
static interface |
SelectBuilder.SelectJoin
Interface exposing
JOIN methods. |
static interface |
SelectBuilder.SelectLimitOffset
Limit/offset methods.
|
static interface |
SelectBuilder.SelectLock
Lock methods.
|
static interface |
SelectBuilder.SelectOn
Interface exposing
ON methods to declare JOIN relationships. |
static interface |
SelectBuilder.SelectOnCondition
Builder exposing JOIN and
JOIN … ON continuation methods. |
static interface |
SelectBuilder.SelectOnConditionComparison
Interface declaring the target column comparison relationship.
|
static interface |
SelectBuilder.SelectOrdered
Builder exposing
ORDER BY and LOCK methods. |
static interface |
SelectBuilder.SelectWhere
Interface exposing
WHERE, LOCK methods. |
static interface |
SelectBuilder.SelectWhereAndOr
|
| Modifier and Type | Method and Description |
|---|---|
SelectBuilder.SelectAndFrom |
distinct()
Makes the select statement distinct
|
SelectBuilder.SelectAndFrom |
select(Collection<? extends Expression> expressions)
Include one or more
Expressions in the select list. |
SelectBuilder.SelectAndFrom |
select(Expression... expressions)
Include one or more
Expressions in the select list. |
SelectBuilder.SelectAndFrom |
select(Expression expression)
Include a
Expression in the select list. |
SelectBuilder |
top(int count)
Apply a
TOP clause given count. |
SelectBuilder top(int count)
TOP clause given count.count - the top count.this SelectBuilder.SelectBuilder.SelectAndFrom select(Expression expression)
Expression in the select list.expression - the expression to include.this builder.Table.column(String)SelectBuilder.SelectAndFrom select(Expression... expressions)
Expressions in the select list.expressions - the expressions to include.this builder.Table.columns(String...)SelectBuilder.SelectAndFrom select(Collection<? extends Expression> expressions)
Expressions in the select list.expressions - the expressions to include.this builder.Table.columns(String...)SelectBuilder.SelectAndFrom distinct()
this builder.Copyright © 2017–2021 Pivotal Software, Inc.. All rights reserved.