Uses of Interface
org.jooq.SelectFieldOrAsterisk
-
Packages that use SelectFieldOrAsterisk Package Description org.jooq Theorg.jooq
package contains jOOQ's public API.org.jooq.impl Theorg.jooq.impl
package contains jOOQ's implementation classes. -
-
Uses of SelectFieldOrAsterisk in org.jooq
Subinterfaces of SelectFieldOrAsterisk in org.jooq Modifier and Type Interface Description interface
AggregateFilterStep<T>
The step in the specification of aggregate functions where the SQL:2003 standardFILTER clause
can be added.interface
AggregateFunction<T>
An aggregate function.interface
ArrayAggOrderByStep<T>
The SQL standardARRAY_AGG()
function.interface
Asterisk
An unqualified asterisk.interface
CaseConditionStep<T>
The final step in creating a case statement of the typeinterface
CaseWhenStep<V,T>
The final step in creating a case statement of the typeinterface
Field<T>
A column expression.interface
GroupConcatOrderByStep
MySQL'sGROUP_CONCAT
function.interface
GroupConcatSeparatorStep
MySQL'sGROUP_CONCAT
function.interface
Param<T>
A named parameter and/or bind value.interface
QualifiedAsterisk
A qualified asterisk.interface
SelectField<T>
AQueryPart
to be used exclusively inSELECT
clauses.interface
TableField<R extends Record,T>
A field contained in a table.interface
UDTField<R extends UDTRecord<R>,T>
A field contained in a UDT.interface
Variable<T>
A local variable reference.interface
WindowBeforeOverStep<T>
This type is used for the window function DSL API.interface
WindowExcludeStep<T>
This type is used for the window function DSL API.interface
WindowFinalStep<T>
This type is used for the window function DSL API.interface
WindowOrderByStep<T>
This type is used for the window function DSL API.interface
WindowPartitionByStep<T>
This type is used for the window function DSL API.interface
WindowRowsStep<T>
This type is used for the window function DSL API.Methods in org.jooq with parameters of type SelectFieldOrAsterisk Modifier and Type Method Description void
SelectQuery. addDistinctOn(SelectFieldOrAsterisk... fields)
Add a PostgreSQL-specificDISTINCT ON (fields...)
clause.void
SelectQuery. addSelect(SelectFieldOrAsterisk... fields)
Add a list of select fields.SelectIntoStep<R>
SelectDistinctOnStep. distinctOn(SelectFieldOrAsterisk... fields)
Add the PostgreSQL-specificON(...)
clause to aSELECT DISTINCT ON (...)
statement.SelectIntoStep<R>
SelectDistinctOnStep. on(SelectFieldOrAsterisk... fields)
Add the PostgreSQL-specificON(...)
clause to aSELECT DISTINCT ON (...)
statement.DeleteResultStep<R>
DeleteReturningStep. returning(SelectFieldOrAsterisk... fields)
Configure theDELETE
statement to return a list of fields inR
.InsertResultStep<R>
InsertReturningStep. returning(SelectFieldOrAsterisk... fields)
Configure theINSERT
statement to return a list of fields inR
.UpdateResultStep<R>
UpdateReturningStep. returning(SelectFieldOrAsterisk... fields)
Configure theUPDATE
statement to return a list of fields inR
.DeleteResultStep<Record>
DeleteReturningStep. returningResult(SelectFieldOrAsterisk... fields)
Configure theDELETE
statement to return a list of fields inR
.InsertResultStep<Record>
InsertReturningStep. returningResult(SelectFieldOrAsterisk... fields)
Configure theINSERT
statement to return a list of fields inR
.UpdateResultStep<Record>
UpdateReturningStep. returningResult(SelectFieldOrAsterisk... fields)
Configure theUPDATE
statement to return a list of fields inR
.SelectSelectStep<Record>
DSLContext. select(SelectFieldOrAsterisk... fields)
Create a new DSL select statement.SelectSelectStep<Record>
SelectSelectStep. select(SelectFieldOrAsterisk... fields)
Add additional fields to theSELECT
clause of this querySelectSelectStep<Record>
WithStep. select(SelectFieldOrAsterisk... fields)
Create a new DSL select statement.SelectSelectStep<Record>
DSLContext. selectDistinct(SelectFieldOrAsterisk... fields)
Create a new DSL select statement.SelectSelectStep<Record>
WithStep. selectDistinct(SelectFieldOrAsterisk... fields)
Create a new DSL select statement.void
DeleteQuery. setReturning(SelectFieldOrAsterisk... fields)
Configure theDELETE
statement to return a list of fields inR
.void
InsertQuery. setReturning(SelectFieldOrAsterisk... fields)
Configure theINSERT
orUPDATE
statement to return a list of fields inR
.void
StoreQuery. setReturning(SelectFieldOrAsterisk... fields)
Configure theINSERT
orUPDATE
statement to return a list of fields inR
.void
UpdateQuery. setReturning(SelectFieldOrAsterisk... fields)
Configure theINSERT
orUPDATE
statement to return a list of fields inR
.Method parameters in org.jooq with type arguments of type SelectFieldOrAsterisk Modifier and Type Method Description void
SelectQuery. addDistinctOn(Collection<? extends SelectFieldOrAsterisk> fields)
Add a PostgreSQL-specificDISTINCT ON (fields...)
clause.void
SelectQuery. addSelect(Collection<? extends SelectFieldOrAsterisk> fields)
Add a list of select fields.SelectIntoStep<R>
SelectDistinctOnStep. distinctOn(Collection<? extends SelectFieldOrAsterisk> fields)
Add the PostgreSQL-specificON(...)
clause to aSELECT DISTINCT ON (...)
statement.SelectIntoStep<R>
SelectDistinctOnStep. on(Collection<? extends SelectFieldOrAsterisk> fields)
Add the PostgreSQL-specificON(...)
clause to aSELECT DISTINCT ON (...)
statement.DeleteResultStep<R>
DeleteReturningStep. returning(Collection<? extends SelectFieldOrAsterisk> fields)
Configure theDELETE
statement to return a list of fields inR
.InsertResultStep<R>
InsertReturningStep. returning(Collection<? extends SelectFieldOrAsterisk> fields)
Configure theINSERT
statement to return a list of fields inR
.UpdateResultStep<R>
UpdateReturningStep. returning(Collection<? extends SelectFieldOrAsterisk> fields)
Configure theUPDATE
statement to return a list of fields inR
.DeleteResultStep<Record>
DeleteReturningStep. returningResult(Collection<? extends SelectFieldOrAsterisk> fields)
Configure theDELETE
statement to return a list of fields inR
.InsertResultStep<Record>
InsertReturningStep. returningResult(Collection<? extends SelectFieldOrAsterisk> fields)
Configure theINSERT
statement to return a list of fields inR
.UpdateResultStep<Record>
UpdateReturningStep. returningResult(Collection<? extends SelectFieldOrAsterisk> fields)
Configure theUPDATE
statement to return a list of fields inR
.SelectSelectStep<Record>
DSLContext. select(Collection<? extends SelectFieldOrAsterisk> fields)
Create a new DSL select statement.SelectSelectStep<Record>
SelectSelectStep. select(Collection<? extends SelectFieldOrAsterisk> fields)
Add additional fields to theSELECT
clause of this querySelectSelectStep<Record>
WithStep. select(Collection<? extends SelectFieldOrAsterisk> fields)
Create a new DSL select statement.SelectSelectStep<Record>
DSLContext. selectDistinct(Collection<? extends SelectFieldOrAsterisk> fields)
Create a new DSL select statement.SelectSelectStep<Record>
WithStep. selectDistinct(Collection<? extends SelectFieldOrAsterisk> fields)
Create a new DSL select statement.void
DeleteQuery. setReturning(Collection<? extends SelectFieldOrAsterisk> fields)
Configure theDELETE
statement to return a list of fields inR
.void
InsertQuery. setReturning(Collection<? extends SelectFieldOrAsterisk> fields)
Configure theINSERT
orUPDATE
statement to return a list of fields inR
.void
StoreQuery. setReturning(Collection<? extends SelectFieldOrAsterisk> fields)
Configure theINSERT
orUPDATE
statement to return a list of fields inR
.void
UpdateQuery. setReturning(Collection<? extends SelectFieldOrAsterisk> fields)
Configure theINSERT
orUPDATE
statement to return a list of fields inR
. -
Uses of SelectFieldOrAsterisk in org.jooq.impl
Classes in org.jooq.impl that implement SelectFieldOrAsterisk Modifier and Type Class Description class
ConvertDateTime<T>
class
CustomField<T>
A base class for customField
implementations in client code.Methods in org.jooq.impl with parameters of type SelectFieldOrAsterisk Modifier and Type Method Description static AggregateFunction<Integer>
DSL. count(SelectFieldOrAsterisk field)
Get the count(field) function.static AggregateFunction<Integer>
DSL. countDistinct(SelectFieldOrAsterisk field)
Get the count(distinct field) function.SelectSelectStep<Record>
DefaultDSLContext. select(SelectFieldOrAsterisk... fields)
static SelectSelectStep<Record>
DSL. select(SelectFieldOrAsterisk... fields)
Create a new DSL subselect statement.SelectSelectStep<Record>
DefaultDSLContext. selectDistinct(SelectFieldOrAsterisk... fields)
static SelectSelectStep<Record>
DSL. selectDistinct(SelectFieldOrAsterisk... fields)
Create a new DSL subselect statement.Method parameters in org.jooq.impl with type arguments of type SelectFieldOrAsterisk Modifier and Type Method Description SelectSelectStep<Record>
DefaultDSLContext. select(Collection<? extends SelectFieldOrAsterisk> fields)
static SelectSelectStep<Record>
DSL. select(Collection<? extends SelectFieldOrAsterisk> fields)
Create a new DSL subselect statement.SelectSelectStep<Record>
DefaultDSLContext. selectDistinct(Collection<? extends SelectFieldOrAsterisk> fields)
static SelectSelectStep<Record>
DSL. selectDistinct(Collection<? extends SelectFieldOrAsterisk> fields)
Create a new DSL subselect statement.
-