Uses of Interface
org.jooq.SelectIntoStep
-
Packages that use SelectIntoStep Package Description org.jooq This package contains jOOQ's public API. -
-
Uses of SelectIntoStep in org.jooq
Subinterfaces of SelectIntoStep in org.jooq Modifier and Type Interface Description interfaceSelectDistinctOnStep<R extends Record>interfaceSelectSelectStep<R extends Record>Methods in org.jooq that return SelectIntoStep Modifier and Type Method Description @NotNull SelectIntoStep<R>SelectDistinctOnStep. distinctOn(Collection<? extends SelectFieldOrAsterisk> fields)Add the PostgreSQL-specificON(...)clause to aSELECT DISTINCT ON (...)statement.@NotNull SelectIntoStep<R>SelectDistinctOnStep. distinctOn(SelectFieldOrAsterisk... fields)Add the PostgreSQL-specificON(...)clause to aSELECT DISTINCT ON (...)statement.@NotNull SelectIntoStep<R>SelectDistinctOnStep. on(Collection<? extends SelectFieldOrAsterisk> fields)Add the PostgreSQL-specificON(...)clause to aSELECT DISTINCT ON (...)statement.@NotNull SelectIntoStep<R>SelectDistinctOnStep. on(SelectFieldOrAsterisk... fields)Add the PostgreSQL-specificON(...)clause to aSELECT DISTINCT ON (...)statement.
-