Uses of Interface
org.jooq.Table
-
Packages that use Table Package Description org.jooq This package contains jOOQ's public API.org.jooq.impl This package contains jOOQ's implementation classes.org.jooq.util.postgres This package contains classes related to theSQLDialect.POSTGRESdialect family. -
-
Uses of Table in org.jooq
Subinterfaces of Table in org.jooq Modifier and Type Interface Description interfaceCommonTableExpression<R extends Record>A common table expression.interfaceJSONTableColumnPathStepA step in the construction of anJSON_TABLEexpression.interfaceJSONTableColumnsStepA step in the construction of anJSON_TABLEexpression.interfaceTableOnConditionStep<R extends Record>An intermediate (optional) type for the construction of aJOINclause, where the join criteria is added using anONclause (with aCondition.interfaceTableOptionalOnStep<R extends Record>interfaceXMLTableColumnPathStepA step in the construction of anXMLTABLEexpression.interfaceXMLTableColumnsStepA step in the construction of anXMLTABLEexpression.Methods in org.jooq that return Table Modifier and Type Method Description @NotNull Table<R>VersionsBetweenAndStep. and(Field<? extends T> scn)Add anANDclause to the flashback versions query clause.@NotNull Table<R>VersionsBetweenAndStep. and(T scn)Add anANDclause to the flashback versions query clause.@NotNull Table<R>VersionsBetweenAndStep. andMaxvalue()Add anAND MAXVALUEclause to the flashback versions query clause.@NotNull Table<R>Table. as(String alias)Create an alias for this table.@NotNull Table<R>Table. as(String alias, String... fieldAliases)Create an alias for this table and its fields.@NotNull Table<R>Table. as(String alias, BiFunction<? super Field<?>,? super Integer,? extends String> aliasFunction)Deprecated.- 3.14.0 - [#10156] - These methods will be removed without replacement from a future jOOQ.@NotNull Table<R>Table. as(String alias, Function<? super Field<?>,? extends String> aliasFunction)Deprecated.- 3.14.0 - [#10156] - These methods will be removed without replacement from a future jOOQ.@NotNull Table<R>Table. as(Name alias)Create an alias for this table.@NotNull Table<R>Table. as(Name alias, BiFunction<? super Field<?>,? super Integer,? extends Name> aliasFunction)Deprecated.- 3.14.0 - [#10156] - These methods will be removed without replacement from a future jOOQ.@NotNull Table<R>Table. as(Name alias, Function<? super Field<?>,? extends Name> aliasFunction)Deprecated.- 3.14.0 - [#10156] - These methods will be removed without replacement from a future jOOQ.@NotNull Table<R>Table. as(Name alias, Name... fieldAliases)Create an alias for this table and its fields.@NotNull Table<R>Table. as(Table<?> otherTable)Create an alias for this table based on another table's name.@NotNull Table<R>Table. as(Table<?> otherTable, BiFunction<? super Field<?>,? super Integer,? extends Field<?>> aliasFunction)Deprecated.- 3.14.0 - [#10156] - These methods will be removed without replacement from a future jOOQ.@NotNull Table<R>Table. as(Table<?> otherTable, Function<? super Field<?>,? extends Field<?>> aliasFunction)Deprecated.- 3.14.0 - [#10156] - These methods will be removed without replacement from a future jOOQ.@NotNull Table<R>Table. as(Table<?> otherTable, Field<?>... otherFields)Create an alias for this table based on another table's name.@NotNull Table<R>Table. asOfScn(Number scn)Create anSQLDialect.ORACLEflashback query clause from this table.@NotNull Table<R>Table. asOfScn(Field<? extends Number> scn)Create anSQLDialect.ORACLEflashback query clause from this table.@NotNull Table<R>Table. asOfTimestamp(Timestamp timestamp)Create anSQLDialect.ORACLEflashback query clause from this table.@NotNull Table<R>Table. asOfTimestamp(Field<Timestamp> timestamp)Create anSQLDialect.ORACLEflashback query clause from this table.@NotNull Table<R>TableLike. asTable()The underlying table representation of this object.@NotNull Table<R>TableLike. asTable(String alias)The underlying aliased table representation of this object.@NotNull Table<R>TableLike. asTable(String alias, String... fieldAliases)The underlying aliased table representation of this object.@NotNull Table<R>TableLike. asTable(String alias, BiFunction<? super Field<?>,? super Integer,? extends String> aliasFunction)Deprecated.- 3.14.0 - [#10156] - These methods will be removed without replacement from a future jOOQ.@NotNull Table<R>TableLike. asTable(String alias, Function<? super Field<?>,? extends String> aliasFunction)Deprecated.- 3.14.0 - [#10156] - These methods will be removed without replacement from a future jOOQ.@NotNull Table<R>TableLike. asTable(Name alias)The underlying aliased table representation of this object.@NotNull Table<R>TableLike. asTable(Name alias, Name... fieldAliases)The underlying aliased table representation of this object.@NotNull Table<R>TableLike. asTable(Table<?> alias)The underlying aliased table representation of this object.@NotNull Table<R>TableLike. asTable(Table<?> alias, Field<?>... fieldAliases)The underlying aliased table representation of this object.@NotNull Table<R>Table. at(String link)A table reference of this table at a givenLink.@NotNull Table<R>Table. at(Link link)A table reference of this table at a givenLink.@NotNull Table<R>Table. at(Name link)A table reference of this table at a givenLink.@NotNull Table<R>ForeignKey. children(Collection<? extends O> records)Get a table expression representing the children of a record, given this foreign key.@NotNull Table<R>ForeignKey. children(O record)Get a table expression representing the children of a record, given this foreign key.@NotNull Table<R>ForeignKey. children(O... records)Get a table expression representing the children of a record, given this foreign key.<O extends TableRecord<O>>
@NotNull Table<O>Result. children(ForeignKey<O,R> key)Get a table expression representing the children of all of this result's records, given a foreign key.<O extends TableRecord<O>>
@NotNull Table<O>UpdatableRecord. children(ForeignKey<O,R> key)Get a table expression representing the children of this record, given a foreign key.@NotNull Table<Record>Table. crossApply(String sql)CROSS APPLYa table to this table.@NotNull Table<Record>Table. crossApply(String sql, Object... bindings)CROSS APPLYa table to this table.@NotNull Table<Record>Table. crossApply(String sql, QueryPart... parts)CROSS APPLYa table to this table.@NotNull Table<Record>Table. crossApply(Name name)CROSS APPLYa table to this table.@NotNull Table<Record>Table. crossApply(SQL sql)CROSS APPLYa table to this table.@NotNull Table<Record>Table. crossApply(TableLike<?> table)CROSS APPLYa table to this table.@NotNull Table<Record>Table. crossJoin(String sql)CROSS JOINa table to this table.@NotNull Table<Record>Table. crossJoin(String sql, Object... bindings)CROSS JOINa table to this table.@NotNull Table<Record>Table. crossJoin(String sql, QueryPart... parts)CROSS JOINa table to this table.@NotNull Table<Record>Table. crossJoin(Name name)CROSS JOINa table to this table.@NotNull Table<Record>Table. crossJoin(SQL sql)CROSS JOINa table to this table.@NotNull Table<Record>Table. crossJoin(TableLike<?> table)CROSS JOINa table to this table.@NotNull Table<R>Table. for_(PeriodSpecification periodSpecification)Create a reference to a temporal table with aPeriodSpecificationfor usage inSelect.@NotNull Table<R>Table. forceIndex(String... indexes)Specify a MySQL style table hint for query optimisation.@NotNull Table<R>Table. forceIndexForGroupBy(String... indexes)Specify a MySQL style table hint for query optimisation.@NotNull Table<R>Table. forceIndexForJoin(String... indexes)Specify a MySQL style table hint for query optimisation.@NotNull Table<R>Table. forceIndexForOrderBy(String... indexes)Specify a MySQL style table hint for query optimisation.@NotNull Table<R>Table. forPortionOf(PeriodSpecification periodSpecification)Table<R>Check. getTable()TheKey's owner table@NotNull Table<R>DAO. getTable()Get the underlying table.@NotNull Table<R>Identity. getTable()TheIDENTITY's owner table@Nullable Table<?>Index. getTable()The table on which this index is defined.@NotNull Table<R>Key. getTable()TheKey's owner table@Nullable Table<?>Schema. getTable(String name)Get a table by its name (case-sensitive) in this schema, ornullif no such table exists.@Nullable Table<?>Schema. getTable(Name name)Get a table by its qualified or unqualified name in this schema, ornullif no such table exists.@Nullable Table<R>TableField. getTable()@NotNull Table<R>TableRecord. getTable()The table from which this record was read.@NotNull Table<R>Table. ignoreIndex(String... indexes)Specify a MySQL style table hint for query optimisation.@NotNull Table<R>Table. ignoreIndexForGroupBy(String... indexes)Specify a MySQL style table hint for query optimisation.@NotNull Table<R>Table. ignoreIndexForJoin(String... indexes)Specify a MySQL style table hint for query optimisation.@NotNull Table<R>Table. ignoreIndexForOrderBy(String... indexes)Specify a MySQL style table hint for query optimisation.@NotNull Table<Record>PivotInStep. in(Collection<? extends Field<T>> fields)Specify the acceptable values for pivoting@NotNull Table<Record>PivotInStep. in(Field<?>... fields)Specify the acceptable values for pivoting@NotNull Table<Record>PivotInStep. in(T... values)Specify the acceptable values for pivoting<R extends Record>
@Nullable Table<R>DSLContext. map(Table<R> table)Map a table to another one.<R extends Record>
@Nullable Table<R>SchemaMapping. map(Table<R> table)Deprecated.Apply mapping to a given table@NotNull Table<Record>Table. naturalFullOuterJoin(String sql)NATURAL FULL OUTER JOINa table to this table.@NotNull Table<Record>Table. naturalFullOuterJoin(String sql, Object... bindings)NATURAL FULL OUTER JOINa table to this table.@NotNull Table<Record>Table. naturalFullOuterJoin(String sql, QueryPart... parts)NATURAL FULL OUTER JOINa table to this table.@NotNull Table<Record>Table. naturalFullOuterJoin(Name name)NATURAL FULL OUTER JOINa table to this table.@NotNull Table<Record>Table. naturalFullOuterJoin(SQL sql)NATURAL FULL OUTER JOINa table to this table.@NotNull Table<Record>Table. naturalFullOuterJoin(TableLike<?> table)NATURAL FULL OUTER JOINa table to this table.@NotNull Table<Record>Table. naturalJoin(String sql)NATURAL JOINa table to this table.@NotNull Table<Record>Table. naturalJoin(String sql, Object... bindings)NATURAL JOINa table to this table.@NotNull Table<Record>Table. naturalJoin(String sql, QueryPart... parts)NATURAL JOINa table to this table.@NotNull Table<Record>Table. naturalJoin(Name name)NATURAL JOINa table to this table.@NotNull Table<Record>Table. naturalJoin(SQL sql)NATURAL JOINa table to this table.@NotNull Table<Record>Table. naturalJoin(TableLike<?> table)NATURAL JOINa table to this table.@NotNull Table<Record>Table. naturalLeftOuterJoin(String sql)NATURAL LEFT OUTER JOINa table to this table.@NotNull Table<Record>Table. naturalLeftOuterJoin(String sql, Object... bindings)NATURAL LEFT OUTER JOINa table to this table.@NotNull Table<Record>Table. naturalLeftOuterJoin(String sql, QueryPart... parts)NATURAL LEFT OUTER JOINa table to this table.@NotNull Table<Record>Table. naturalLeftOuterJoin(Name name)NATURAL LEFT OUTER JOINa table to this table.@NotNull Table<Record>Table. naturalLeftOuterJoin(SQL sql)NATURAL LEFT OUTER JOINa table to this table.@NotNull Table<Record>Table. naturalLeftOuterJoin(TableLike<?> table)NATURAL LEFT OUTER JOINa table to this table.@NotNull Table<Record>Table. naturalRightOuterJoin(String sql)NATURAL RIGHT OUTER JOINa table to this table.@NotNull Table<Record>Table. naturalRightOuterJoin(String sql, Object... bindings)NATURAL RIGHT OUTER JOINa table to this table.@NotNull Table<Record>Table. naturalRightOuterJoin(String sql, QueryPart... parts)NATURAL RIGHT OUTER JOINa table to this table.@NotNull Table<Record>Table. naturalRightOuterJoin(Name name)NATURAL RIGHT OUTER JOINa table to this table.@NotNull Table<Record>Table. naturalRightOuterJoin(SQL sql)NATURAL RIGHT OUTER JOINa table to this table.@NotNull Table<Record>Table. naturalRightOuterJoin(TableLike<?> table)NATURAL RIGHT OUTER JOINa table to this table.@NotNull Table<Record>Table. outerApply(String sql)OUTER APPLYa table to this table.@NotNull Table<Record>Table. outerApply(String sql, Object... bindings)OUTER APPLYa table to this table.@NotNull Table<Record>Table. outerApply(String sql, QueryPart... parts)OUTER APPLYa table to this table.@NotNull Table<Record>Table. outerApply(Name name)OUTER APPLYa table to this table.@NotNull Table<Record>Table. outerApply(SQL sql)OUTER APPLYa table to this table.@NotNull Table<Record>Table. outerApply(TableLike<?> table)OUTER APPLYa table to this table.@NotNull Table<O>ForeignKey. parent(R record)Get a table expression representing the parent of a record, given this foreign key.<O extends UpdatableRecord<O>>
@NotNull Table<O>TableRecord. parent(ForeignKey<R,O> key)Get a table expression representing the parent of this record, given a foreign key.@NotNull Table<O>ForeignKey. parents(Collection<? extends R> records)Get a table expression representing the parents of a record, given this foreign key.@NotNull Table<O>ForeignKey. parents(R... records)Get a table expression representing the parents of a record, given this foreign key.<O extends UpdatableRecord<O>>
@NotNull Table<O>Result. parents(ForeignKey<R,O> key)Get a table expression representing the parents of all of this result's records, given a foreign key.@NotNull Table<?>Parser. parseTable(String sql)Parse a SQL string to a table.@NotNull Table<?>Parser. parseTable(String sql, Object... bindings)Parse a SQL string with bind variables to a table.@NotNull Table<?>QualifiedAsterisk. qualifier()The qualifier.@NotNull Table<Record>DivideByReturningStep. returning(Collection<? extends Field<?>> fields)Specify the fields that you want the division to return from the dividend@NotNull Table<Record>DivideByReturningStep. returning(Field<?>... fields)Specify the fields that you want the division to return from the dividend@NotNull Table<R>Table. useIndex(String... indexes)Specify a MySQL style table hint for query optimisation.@NotNull Table<R>Table. useIndexForGroupBy(String... indexes)Specify a MySQL style table hint for query optimisation.@NotNull Table<R>Table. useIndexForJoin(String... indexes)Specify a MySQL style table hint for query optimisation.@NotNull Table<R>Table. useIndexForOrderBy(String... indexes)Specify a MySQL style table hint for query optimisation.@NotNull Table<Record>TableOnStep. using(Collection<? extends Field<?>> fields)Join a table with theUSING(column [, column...])syntax.@NotNull Table<Record>TableOnStep. using(Field<?>... fields)Join a table with theUSING(column [, column...])syntax.@NotNull Table<R>Table. where(String sql)Add aWHEREclause to the table.@NotNull Table<R>Table. where(String sql, Object... bindings)Add aWHEREclause to the table.@NotNull Table<R>Table. where(String sql, QueryPart... parts)Add aWHEREclause to the table.@NotNull Table<R>Table. where(Collection<? extends Condition> conditions)Add aWHEREclause to the table, connecting them with each other withOperator.AND.@NotNull Table<R>Table. where(Condition condition)Add aWHEREclause to the table, connecting them with each other withOperator.AND.@NotNull Table<R>Table. where(Condition... conditions)Add aWHEREclause to the table, connecting them with each other withOperator.AND.@NotNull Table<R>Table. where(Field<Boolean> field)Add aWHEREclause to the table.@NotNull Table<R>Table. where(SQL sql)Add aWHEREclause to the table.@NotNull Table<R>Table. whereExists(Select<?> select)Add aWHERE EXISTSclause to the table.@NotNull Table<R>Table. whereNotExists(Select<?> select)Add aWHERE NOT EXISTSclause to the table.@NotNull Table<R>Table. with(String hint)Specify a SQL Server style table hint for query optimisation.@NotNull Table<R>Table. with(String hint, Object... binds)Specify a SQL Server style table hint for query optimisation.@NotNull Table<R>Table. with(String hint, QueryPart... parts)Specify a SQL Server style table hint for query optimisation.@NotNull Table<R>Table. with(SQL hint)Specify a SQL Server style table hint for query optimisation.Methods in org.jooq that return types with arguments of type Table Modifier and Type Method Description @NotNull List<Table<?>>Meta. getTables()Get all table objects from the underlying meta data source.@NotNull List<Table<?>>Meta. getTables(String name)Get all table objects by name from the underlying meta data source.@NotNull List<Table<?>>Meta. getTables(Name name)Get all table objects by name from the underlying meta data source.@NotNull List<Table<?>>Schema. getTables()List all tables contained in this schema.@NotNull Stream<Table<?>>Schema. tableStream()Stream all tables contained in this schema.Methods in org.jooq with parameters of type Table Modifier and Type Method Description voidSchemaMapping. add(Table<?> inputTable, String outputTable)Deprecated.Add tables to this mappingvoidSchemaMapping. add(Table<?> inputTable, Table<?> outputTable)Deprecated.Add tables to this mapping@NotNull AlterTableStepDSLContext. alterTable(Table<?> table)Create a new DSLALTER TABLEstatement.@NotNull AlterTableStepDSLContext. alterTableIfExists(Table<?> table)Create a new DSLALTER TABLEstatement.@NotNull AlterViewStepDSLContext. alterView(Table<?> view)Create a new DSLALTER VIEWstatement.@NotNull AlterViewStepDSLContext. alterViewIfExists(Table<?> view)Create a new DSLALTER VIEWstatement.@NotNull Table<R>Table. as(Table<?> otherTable)Create an alias for this table based on another table's name.@NotNull Table<R>Table. as(Table<?> otherTable, BiFunction<? super Field<?>,? super Integer,? extends Field<?>> aliasFunction)Deprecated.- 3.14.0 - [#10156] - These methods will be removed without replacement from a future jOOQ.@NotNull Table<R>Table. as(Table<?> otherTable, Function<? super Field<?>,? extends Field<?>> aliasFunction)Deprecated.- 3.14.0 - [#10156] - These methods will be removed without replacement from a future jOOQ.@NotNull Table<R>Table. as(Table<?> otherTable, Field<?>... otherFields)Create an alias for this table based on another table's name.@NotNull Table<R>TableLike. asTable(Table<?> alias)The underlying aliased table representation of this object.@NotNull Table<R>TableLike. asTable(Table<?> alias, Field<?>... fieldAliases)The underlying aliased table representation of this object.<X extends Record>
@NotNull ResultQuery<X>ResultQuery. coerce(Table<X> table)Coerce the result record type of this query to that of a table.@NotNull CommentOnIsStepDSLContext. commentOnTable(Table<?> table)Create a new DSLCOMMENT ON TABLEstatement.@NotNull CommentOnIsStepDSLContext. commentOnView(Table<?> view)Create a new DSLCOMMENT ON VIEWstatement.@NotNull CreateTableColumnStepDSLContext. createGlobalTemporaryTable(Table<?> table)Create a new DSLCREATE GLOBAL TEMPORARY TABLEstatement.@NotNull CreateViewAsStep<Record>DSLContext. createOrReplaceView(Table<?> view, BiFunction<? super Field<?>,? super Integer,? extends Field<?>> fieldNameFunction)Deprecated.- 3.14.0 - [#10156] - These methods will be removed without replacement from a future jOOQ.@NotNull CreateViewAsStep<Record>DSLContext. createOrReplaceView(Table<?> view, Function<? super Field<?>,? extends Field<?>> fieldNameFunction)Deprecated.- 3.14.0 - [#10156] - These methods will be removed without replacement from a future jOOQ.@NotNull CreateViewAsStep<Record>DSLContext. createOrReplaceView(Table<?> view, Field<?>... fields)Create a new DSLCREATE OR REPLACE VIEWstatement.@NotNull CreateTableColumnStepDSLContext. createTable(Table<?> table)Create a new DSLCREATE TABLEstatement.@NotNull CreateTableColumnStepDSLContext. createTableIfNotExists(Table<?> table)Create a new DSLCREATE TABLEstatement.@NotNull CreateTableColumnStepDSLContext. createTemporaryTable(Table<?> table)Create a new DSLCREATE TEMPORARY TABLEstatement.@NotNull CreateTableColumnStepDSLContext. createTemporaryTableIfNotExists(Table<?> table)Create a new DSLCREATE TEMPORARY TABLE IF NOT EXISTSstatement.@NotNull CreateViewAsStep<Record>DSLContext. createView(Table<?> view, BiFunction<? super Field<?>,? super Integer,? extends Field<?>> fieldNameFunction)Deprecated.- 3.14.0 - [#10156] - These methods will be removed without replacement from a future jOOQ.@NotNull CreateViewAsStep<Record>DSLContext. createView(Table<?> view, Function<? super Field<?>,? extends Field<?>> fieldNameFunction)Deprecated.- 3.14.0 - [#10156] - These methods will be removed without replacement from a future jOOQ.@NotNull CreateViewAsStep<Record>DSLContext. createView(Table<?> view, Field<?>... fields)Create a new DSLCREATE VIEWstatement.@NotNull CreateViewAsStep<Record>DSLContext. createViewIfNotExists(Table<?> view, BiFunction<? super Field<?>,? super Integer,? extends Field<?>> fieldNameFunction)Deprecated.- 3.14.0 - [#10156] - These methods will be removed without replacement from a future jOOQ.@NotNull CreateViewAsStep<Record>DSLContext. createViewIfNotExists(Table<?> view, Function<? super Field<?>,? extends Field<?>> fieldNameFunction)Deprecated.- 3.14.0 - [#10156] - These methods will be removed without replacement from a future jOOQ.@NotNull CreateViewAsStep<Record>DSLContext. createViewIfNotExists(Table<?> view, Field<?>... fields)Create a new DSLCREATE VIEWstatement.@NotNull QueriesDSLContext. ddl(Table<?> table)Convenience method forMeta.ddl().@NotNull QueriesDSLContext. ddl(Table<?>... tables)Convenience method forMeta.ddl().@NotNull QueriesDSLContext. ddl(Table<?>[] tables, DDLExportConfiguration configuration)Convenience method forMeta.ddl(DDLExportConfiguration).@NotNull QueriesDSLContext. ddl(Table<?>[] tables, DDLFlag... flags)Convenience method forMeta.ddl(DDLExportConfiguration).@NotNull QueriesDSLContext. ddl(Table<?> table, DDLExportConfiguration configuration)Convenience method forMeta.ddl(DDLExportConfiguration).@NotNull QueriesDSLContext. ddl(Table<?> table, DDLFlag... flags)Convenience method forMeta.ddl(DDLExportConfiguration).<R extends Record>
@NotNull DeleteUsingStep<R>DSLContext. delete(Table<R> table)Create a new DSL delete statement.<R extends Record>
@NotNull DeleteUsingStep<R>WithStep. delete(Table<R> table)Create a new DSL delete statement.<R extends Record>
@NotNull DeleteUsingStep<R>DSLContext. deleteFrom(Table<R> table)Create a new DSL delete statement.<R extends Record>
@NotNull DeleteQuery<R>DSLContext. deleteQuery(Table<R> table)Create a newDeleteQuery@NotNull DivideByOnStepTable. divideBy(Table<?> divisor)Create a newTABLEreference from this table, applying relational division.@NotNull DropTableStepDSLContext. dropTable(Table<?> table)Create a new DSLDROP TABLEstatement.@NotNull DropTableStepDSLContext. dropTableIfExists(Table<?> table)Create a new DSLDROP TABLE IF EXISTSstatement.@NotNull DropTableStepDSLContext. dropTemporaryTable(Table<?> table)Create a new DSLDROP TEMPORARY TABLEstatement.@NotNull DropTableStepDSLContext. dropTemporaryTableIfExists(Table<?> table)Create a new DSLDROP TEMPORARY TABLE IF EXISTSstatement.@NotNull DropViewFinalStepDSLContext. dropView(Table<?> view)Create a new DSLDROP VIEWstatement.@NotNull DropViewFinalStepDSLContext. dropViewIfExists(Table<?> view)Create a new DSLDROP VIEW IF EXISTSstatement.@NotNull ConditionTable. eq(Table<R> table)Create a predicate comparing records from self-joined tables.@NotNull ConditionTable. equal(Table<R> table)Create a predicate comparing records from self-joined tables.<R extends Record>
@NotNull Result<R>DSLContext. fetch(Table<R> table)Execute and return all records for<R extends Record>
@NotNull Result<R>DSLContext. fetch(Table<R> table, Collection<? extends Condition> conditions)Execute and return all records for<R extends Record>
@NotNull Result<R>DSLContext. fetch(Table<R> table, Condition condition)Execute and return all records for<R extends Record>
@NotNull Result<R>DSLContext. fetch(Table<R> table, Condition... conditions)Execute and return all records for<R extends Record>
RDSLContext. fetchAny(Table<R> table)Execute and return zero or one record for<R extends Record>
RDSLContext. fetchAny(Table<R> table, Collection<? extends Condition> conditions)Execute and return zero or one record for<R extends Record>
RDSLContext. fetchAny(Table<R> table, Condition condition)Execute and return zero or one record for<R extends Record>
RDSLContext. fetchAny(Table<R> table, Condition... conditions)Execute and return zero or on e record for<Z extends Record>
ZResultQuery. fetchAnyInto(Table<Z> table)Map resulting records onto a custom record.<R extends Record>
@NotNull CompletionStage<Result<R>>DSLContext. fetchAsync(Executor executor, Table<R> table)Execute and return all records asynchronously for<R extends Record>
@NotNull CompletionStage<Result<R>>DSLContext. fetchAsync(Executor executor, Table<R> table, Collection<? extends Condition> conditions)Execute and return all records asynchronously for<R extends Record>
@NotNull CompletionStage<Result<R>>DSLContext. fetchAsync(Executor executor, Table<R> table, Condition condition)Execute and return all records asynchronously for<R extends Record>
@NotNull CompletionStage<Result<R>>DSLContext. fetchAsync(Executor executor, Table<R> table, Condition... conditions)Execute and return all records asynchronously for<R extends Record>
@NotNull CompletionStage<Result<R>>DSLContext. fetchAsync(Table<R> table)Execute and return all records asynchronously for<R extends Record>
@NotNull CompletionStage<Result<R>>DSLContext. fetchAsync(Table<R> table, Collection<? extends Condition> condition)Execute and return all records asynchronously for<R extends Record>
@NotNull CompletionStage<Result<R>>DSLContext. fetchAsync(Table<R> table, Condition condition)Execute and return all records asynchronously for<R extends Record>
@NotNull CompletionStage<Result<R>>DSLContext. fetchAsync(Table<R> table, Condition... condition)Execute and return all records asynchronously forintDSLContext. fetchCount(Table<?> table)Count the number of records in a table.intDSLContext. fetchCount(Table<?> table, Collection<? extends Condition> conditions)Count the number of records in a table that satisfy a condition.intDSLContext. fetchCount(Table<?> table, Condition condition)Count the number of records in a table that satisfy a condition.intDSLContext. fetchCount(Table<?> table, Condition... conditions)Count the number of records in a table that satisfy a condition.booleanDSLContext. fetchExists(Table<?> table)Check if a table has any records.booleanDSLContext. fetchExists(Table<?> table, Collection<? extends Condition> conditions)Check if a table has any records that satisfy a condition.booleanDSLContext. fetchExists(Table<?> table, Condition condition)Check if a table has any records that satisfy a condition.booleanDSLContext. fetchExists(Table<?> table, Condition... conditions)Check if a table has any records that satisfy a condition.<S extends Record>
@NotNull Map<S,Result<R>>ResultQuery. fetchGroups(Table<S> table)Execute the query and return aMapwith the result grouped by the given table.<E,S extends Record>
@NotNull Map<S,List<E>>ResultQuery. fetchGroups(Table<S> table, Class<? extends E> type)Execute the query and return aMapwith results grouped by the given table and mapped into the given entity type.<E,S extends Record>
@NotNull Map<S,List<E>>ResultQuery. fetchGroups(Table<S> table, RecordMapper<? super R,E> mapper)Execute the query and return aMapwith results grouped by the given table and mapped by the given mapper.<S extends Record,T extends Record>
@NotNull Map<S,Result<T>>ResultQuery. fetchGroups(Table<S> keyTable, Table<T> valueTable)Execute the query and return aMapwith the result grouped by the given table.<Z extends Record>
@NotNull Result<Z>Cursor. fetchInto(Table<Z> table)Map resulting records onto a custom record.<Z extends Record>
@NotNull Result<Z>ResultQuery. fetchInto(Table<Z> table)Map resulting records onto a custom record.<R extends Record>
@NotNull Cursor<R>DSLContext. fetchLazy(Table<R> table)Execute and return all records lazily for<R extends Record>
@NotNull Cursor<R>DSLContext. fetchLazy(Table<R> table, Collection<? extends Condition> conditions)Execute and return all records lazily for<R extends Record>
@NotNull Cursor<R>DSLContext. fetchLazy(Table<R> table, Condition condition)Execute and return all records lazily for<R extends Record>
@NotNull Cursor<R>DSLContext. fetchLazy(Table<R> table, Condition... conditions)Execute and return all records lazily for<S extends Record>
@NotNull Map<S,R>ResultQuery. fetchMap(Table<S> table)Execute the query and return aMapwith table as a map key and the corresponding record as value.<E,S extends Record>
@NotNull Map<S,E>ResultQuery. fetchMap(Table<S> table, Class<? extends E> type)Execute the query and return aMapwith results grouped by the given table and mapped into the given entity type.<E,S extends Record>
@NotNull Map<S,E>ResultQuery. fetchMap(Table<S> table, RecordMapper<? super R,E> mapper)Execute the query and return aMapwith results grouped by the given table and mapped by the given mapper.<S extends Record,T extends Record>
@NotNull Map<S,T>ResultQuery. fetchMap(Table<S> keyTable, Table<T> valueTable)Execute the query and return aMapwith table as a map key and the corresponding record as value.<Z extends Record>
ZCursor. fetchNextInto(Table<Z> table)Map the next resulting record onto a custom record.<Z extends Record>
@NotNull Optional<Z>Cursor. fetchNextOptionalInto(Table<Z> table)Map the next resulting record onto a custom record.<R extends Record>
RDSLContext. fetchOne(Table<R> table)Execute and return zero or one record for<R extends Record>
RDSLContext. fetchOne(Table<R> table, Collection<? extends Condition> conditions)Execute and return zero or one record for<R extends Record>
RDSLContext. fetchOne(Table<R> table, Condition condition)Execute and return zero or one record for<R extends Record>
RDSLContext. fetchOne(Table<R> table, Condition... conditions)Execute and return zero or one record for<Z extends Record>
ZCursor. fetchOneInto(Table<Z> table)Deprecated.- 3.10 - [#6363] - UseCursor.fetchNextInto(Table)instead.<Z extends Record>
ZResultQuery. fetchOneInto(Table<Z> table)Map resulting records onto a custom record.<R extends Record>
@NotNull Optional<R>DSLContext. fetchOptional(Table<R> table)Execute and return zero or one record for<R extends Record>
@NotNull Optional<R>DSLContext. fetchOptional(Table<R> table, Collection<? extends Condition> conditions)Execute and return zero or one record for<R extends Record>
@NotNull Optional<R>DSLContext. fetchOptional(Table<R> table, Condition condition)Execute and return zero or one record for<R extends Record>
@NotNull Optional<R>DSLContext. fetchOptional(Table<R> table, Condition... conditions)Execute and return zero or one record for<Z extends Record>
@NotNull Optional<Z>Cursor. fetchOptionalInto(Table<Z> table)Deprecated.- 3.10 - [#6363] - UseCursor.fetchNextOptionalInto(Table)instead.<Z extends Record>
@NotNull Optional<Z>ResultQuery. fetchOptionalInto(Table<Z> table)Map resulting records onto a custom record.<R extends Record>
RDSLContext. fetchSingle(Table<R> table)Execute and return exactly one record for<R extends Record>
RDSLContext. fetchSingle(Table<R> table, Collection<? extends Condition> conditions)Execute and return exactly one record for<R extends Record>
RDSLContext. fetchSingle(Table<R> table, Condition condition)Execute and return exactly one record for<R extends Record>
RDSLContext. fetchSingle(Table<R> table, Condition... conditions)Execute and return exactly one record for<Z extends Record>
ZResultQuery. fetchSingleInto(Table<Z> table)Map resulting records onto a custom record.<R extends Record>
@NotNull Stream<R>DSLContext. fetchStream(Table<R> table)Execute and return all records lazily for<R extends Record>
@NotNull Stream<R>DSLContext. fetchStream(Table<R> table, Collection<? extends Condition> conditions)Execute and return all records lazily for<R extends Record>
@NotNull Stream<R>DSLContext. fetchStream(Table<R> table, Condition condition)Execute and return all records lazily for<R extends Record>
@NotNull Stream<R>DSLContext. fetchStream(Table<R> table, Condition... conditions)Execute and return all records lazily for<Z extends Record>
@NotNull Stream<Z>ResultQuery. fetchStreamInto(Table<Z> table)Stream this query, mapping records into a custom record.<T> TDSLContext. fetchValue(Table<? extends Record1<T>> table)Fetch a single value from a single column table.<T> @NotNull List<T>DSLContext. fetchValues(Table<? extends Record1<T>> table)Fetch all values from a single column table.voidFormattable. formatInsert(OutputStream stream, Table<?> table, Field<?>... fields)LikeFormattable.formatInsert(Table, Field...), but the data is output onto anOutputStream.voidFormattable. formatInsert(Writer writer, Table<?> table, Field<?>... fields)LikeFormattable.formatInsert(Table, Field...), but the data is output onto anWriter.StringFormattable. formatInsert(Table<?> table, Field<?>... fields)Get this result as a set ofINSERTstatements.<O extends Record>
@NotNull List<ForeignKey<O,R>>Table. getReferencesFrom(Table<O> other)Get a list ofFOREIGN KEY's of a specific table, referencing a this table.<O extends Record>
@NotNull List<ForeignKey<R,O>>Table. getReferencesTo(Table<O> other)Get a list ofFOREIGN KEY's of this table, referencing a specific table.@NotNull InformationSchemaDSLContext. informationSchema(Table<?> table)Convenience method forMeta.informationSchema().@NotNull InformationSchemaDSLContext. informationSchema(Table<?>... table)Convenience method forMeta.informationSchema().<R extends Record>
@NotNull InsertSetStep<R>DSLContext. insertInto(Table<R> into)Create a new DSL insert statement.<R extends Record>
@NotNull InsertValuesStepN<R>DSLContext. insertInto(Table<R> into, Collection<? extends Field<?>> fields)Create a new DSL insert statement.<R extends Record>
@NotNull InsertValuesStepN<R>DSLContext. insertInto(Table<R> into, Field<?>... fields)Create a new DSL insert statement.<R extends Record,T1>
@NotNull InsertValuesStep1<R,T1>DSLContext. insertInto(Table<R> into, Field<T1> field1)Create a new DSL insert statement.<R extends Record,T1,T2>
@NotNull InsertValuesStep2<R,T1,T2>DSLContext. insertInto(Table<R> into, Field<T1> field1, Field<T2> field2)Create a new DSL insert statement.<R extends Record,T1,T2,T3>
@NotNull InsertValuesStep3<R,T1,T2,T3>DSLContext. insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3)Create a new DSL insert statement.<R extends Record,T1,T2,T3,T4>
@NotNull InsertValuesStep4<R,T1,T2,T3,T4>DSLContext. insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4)Create a new DSL insert statement.<R extends Record,T1,T2,T3,T4,T5>
@NotNull InsertValuesStep5<R,T1,T2,T3,T4,T5>DSLContext. insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5)Create a new DSL insert statement.<R extends Record,T1,T2,T3,T4,T5,T6>
@NotNull InsertValuesStep6<R,T1,T2,T3,T4,T5,T6>DSLContext. insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6)Create a new DSL insert statement.<R extends Record,T1,T2,T3,T4,T5,T6,T7>
@NotNull InsertValuesStep7<R,T1,T2,T3,T4,T5,T6,T7>DSLContext. insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7)Create a new DSL insert statement.<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8>
@NotNull InsertValuesStep8<R,T1,T2,T3,T4,T5,T6,T7,T8>DSLContext. insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8)Create a new DSL insert statement.<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9>
@NotNull InsertValuesStep9<R,T1,T2,T3,T4,T5,T6,T7,T8,T9>DSLContext. insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9)Create a new DSL insert statement.<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10>
@NotNull InsertValuesStep10<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10>DSLContext. insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10)Create a new DSL insert statement.<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>
@NotNull InsertValuesStep11<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>DSLContext. insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11)Create a new DSL insert statement.<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12>
@NotNull InsertValuesStep12<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12>DSLContext. insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12)Create a new DSL insert statement.<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13>
@NotNull InsertValuesStep13<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13>DSLContext. insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13)Create a new DSL insert statement.<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14>
@NotNull InsertValuesStep14<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14>DSLContext. insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14)Create a new DSL insert statement.<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15>
@NotNull InsertValuesStep15<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15>DSLContext. insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15)Create a new DSL insert statement.<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16>
@NotNull InsertValuesStep16<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16>DSLContext. insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16)Create a new DSL insert statement.<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17>
@NotNull InsertValuesStep17<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17>DSLContext. insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17)Create a new DSL insert statement.<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18>
@NotNull InsertValuesStep18<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18>DSLContext. insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17, Field<T18> field18)Create a new DSL insert statement.<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19>
@NotNull InsertValuesStep19<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19>DSLContext. insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17, Field<T18> field18, Field<T19> field19)Create a new DSL insert statement.<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20>
@NotNull InsertValuesStep20<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20>DSLContext. insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17, Field<T18> field18, Field<T19> field19, Field<T20> field20)Create a new DSL insert statement.<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21>
@NotNull InsertValuesStep21<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21>DSLContext. insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17, Field<T18> field18, Field<T19> field19, Field<T20> field20, Field<T21> field21)Create a new DSL insert statement.<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21,T22>
@NotNull InsertValuesStep22<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21,T22>DSLContext. insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17, Field<T18> field18, Field<T19> field19, Field<T20> field20, Field<T21> field21, Field<T22> field22)Create a new DSL insert statement.<R extends Record>
@NotNull InsertSetStep<R>WithStep. insertInto(Table<R> into)Create a new DSL insert statement.<R extends Record>
@NotNull InsertValuesStepN<R>WithStep. insertInto(Table<R> into, Collection<? extends Field<?>> fields)Create a new DSL insert statement.<R extends Record>
@NotNull InsertValuesStepN<R>WithStep. insertInto(Table<R> into, Field<?>... fields)Create a new DSL insert statement.<R extends Record,T1>
@NotNull InsertValuesStep1<R,T1>WithStep. insertInto(Table<R> into, Field<T1> field1)Create a new DSL insert statement.<R extends Record,T1,T2>
@NotNull InsertValuesStep2<R,T1,T2>WithStep. insertInto(Table<R> into, Field<T1> field1, Field<T2> field2)Create a new DSL insert statement.<R extends Record,T1,T2,T3>
@NotNull InsertValuesStep3<R,T1,T2,T3>WithStep. insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3)Create a new DSL insert statement.<R extends Record,T1,T2,T3,T4>
@NotNull InsertValuesStep4<R,T1,T2,T3,T4>WithStep. insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4)Create a new DSL insert statement.<R extends Record,T1,T2,T3,T4,T5>
@NotNull InsertValuesStep5<R,T1,T2,T3,T4,T5>WithStep. insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5)Create a new DSL insert statement.<R extends Record,T1,T2,T3,T4,T5,T6>
@NotNull InsertValuesStep6<R,T1,T2,T3,T4,T5,T6>WithStep. insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6)Create a new DSL insert statement.<R extends Record,T1,T2,T3,T4,T5,T6,T7>
@NotNull InsertValuesStep7<R,T1,T2,T3,T4,T5,T6,T7>WithStep. insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7)Create a new DSL insert statement.<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8>
@NotNull InsertValuesStep8<R,T1,T2,T3,T4,T5,T6,T7,T8>WithStep. insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8)Create a new DSL insert statement.<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9>
@NotNull InsertValuesStep9<R,T1,T2,T3,T4,T5,T6,T7,T8,T9>WithStep. insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9)Create a new DSL insert statement.<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10>
@NotNull InsertValuesStep10<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10>WithStep. insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10)Create a new DSL insert statement.<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>
@NotNull InsertValuesStep11<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>WithStep. insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11)Create a new DSL insert statement.<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12>
@NotNull InsertValuesStep12<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12>WithStep. insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12)Create a new DSL insert statement.<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13>
@NotNull InsertValuesStep13<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13>WithStep. insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13)Create a new DSL insert statement.<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14>
@NotNull InsertValuesStep14<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14>WithStep. insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14)Create a new DSL insert statement.<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15>
@NotNull InsertValuesStep15<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15>WithStep. insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15)Create a new DSL insert statement.<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16>
@NotNull InsertValuesStep16<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16>WithStep. insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16)Create a new DSL insert statement.<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17>
@NotNull InsertValuesStep17<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17>WithStep. insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17)Create a new DSL insert statement.<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18>
@NotNull InsertValuesStep18<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18>WithStep. insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17, Field<T18> field18)Create a new DSL insert statement.<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19>
@NotNull InsertValuesStep19<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19>WithStep. insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17, Field<T18> field18, Field<T19> field19)Create a new DSL insert statement.<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20>
@NotNull InsertValuesStep20<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20>WithStep. insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17, Field<T18> field18, Field<T19> field19, Field<T20> field20)Create a new DSL insert statement.<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21>
@NotNull InsertValuesStep21<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21>WithStep. insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17, Field<T18> field18, Field<T19> field19, Field<T20> field20, Field<T21> field21)Create a new DSL insert statement.<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21,T22>
@NotNull InsertValuesStep22<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21,T22>WithStep. insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17, Field<T18> field18, Field<T19> field19, Field<T20> field20, Field<T21> field21, Field<T22> field22)Create a new DSL insert statement.<R extends Record>
@NotNull InsertQuery<R>DSLContext. insertQuery(Table<R> into)Create a newInsertQuery<R extends Record>
RRecord. into(Table<R> table)Map resulting records onto a custom record type.<Z extends Record>
@NotNull Result<Z>Result. into(Table<Z> table)Map resulting records onto a custom record.@NotNull SelectFromStep<Record>SelectIntoStep. into(Table<?> table)Add anINTOclause to theSELECTstatement.<S extends Record>
@NotNull Map<S,Result<R>>Result. intoGroups(Table<S> table)Return aMapwith the result grouped by the given key table.<E,S extends Record>
@NotNull Map<S,List<E>>Result. intoGroups(Table<S> table, Class<? extends E> type)Return aMapwith results grouped by the given key table and mapped into the given entity type.<E,S extends Record>
@NotNull Map<S,List<E>>Result. intoGroups(Table<S> table, RecordMapper<? super R,E> mapper)Return aMapwith results grouped by the given key table and mapped into the given entity type.<S extends Record,T extends Record>
@NotNull Map<S,Result<T>>Result. intoGroups(Table<S> keyTable, Table<T> valueTable)Return aMapwith the result grouped by the given key table.<S extends Record>
@NotNull Map<S,R>Result. intoMap(Table<S> table)Return aMapwith the given key table as a map key and the corresponding record as value.<E,S extends Record>
@NotNull Map<S,E>Result. intoMap(Table<S> table, Class<? extends E> type)Return aMapwith results grouped by the given key table and mapped into the given entity type.<E,S extends Record>
@NotNull Map<S,E>Result. intoMap(Table<S> table, RecordMapper<? super R,E> mapper)Return aMapwith results grouped by the given key table and mapped by the given mapper.<S extends Record,T extends Record>
@NotNull Map<S,T>Result. intoMap(Table<S> keyTable, Table<T> valueTable)Return aMapwith the given key table as a map key and the corresponding record as value.<R extends Record>
@NotNull LoaderOptionsStep<R>DSLContext. loadInto(Table<R> table)Create a newLoaderobject to load data from a CSV or XML source.<R extends Record>
@Nullable Table<R>DSLContext. map(Table<R> table)Map a table to another one.<R extends Record>
@Nullable Table<R>SchemaMapping. map(Table<R> table)Deprecated.Apply mapping to a given table<R extends Record>
@NotNull MergeUsingStep<R>DSLContext. mergeInto(Table<R> table)Create a new DSL SQL standard MERGE statement.<R extends Record>
@NotNull MergeKeyStepN<R>DSLContext. mergeInto(Table<R> table, Collection<? extends Field<?>> fields)Deprecated.- [#10045] - 3.14.0 - Use the standard SQL MERGE API instead, viaDSLContext.mergeInto(Table)<R extends Record>
@NotNull MergeKeyStepN<R>DSLContext. mergeInto(Table<R> table, Field<?>... fields)Deprecated.- [#10045] - 3.14.0 - Use the standard SQL MERGE API instead, viaDSLContext.mergeInto(Table)<R extends Record,T1>
@NotNull MergeKeyStep1<R,T1>DSLContext. mergeInto(Table<R> table, Field<T1> field1)Deprecated.- [#10045] - 3.14.0 - Use the standard SQL MERGE API instead, viaDSLContext.mergeInto(Table)<R extends Record,T1,T2>
@NotNull MergeKeyStep2<R,T1,T2>DSLContext. mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2)Deprecated.- [#10045] - 3.14.0 - Use the standard SQL MERGE API instead, viaDSLContext.mergeInto(Table)<R extends Record,T1,T2,T3>
@NotNull MergeKeyStep3<R,T1,T2,T3>DSLContext. mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3)Deprecated.- [#10045] - 3.14.0 - Use the standard SQL MERGE API instead, viaDSLContext.mergeInto(Table)<R extends Record,T1,T2,T3,T4>
@NotNull MergeKeyStep4<R,T1,T2,T3,T4>DSLContext. mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4)Deprecated.- [#10045] - 3.14.0 - Use the standard SQL MERGE API instead, viaDSLContext.mergeInto(Table)<R extends Record,T1,T2,T3,T4,T5>
@NotNull MergeKeyStep5<R,T1,T2,T3,T4,T5>DSLContext. mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5)Deprecated.- [#10045] - 3.14.0 - Use the standard SQL MERGE API instead, viaDSLContext.mergeInto(Table)<R extends Record,T1,T2,T3,T4,T5,T6>
@NotNull MergeKeyStep6<R,T1,T2,T3,T4,T5,T6>DSLContext. mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6)Deprecated.- [#10045] - 3.14.0 - Use the standard SQL MERGE API instead, viaDSLContext.mergeInto(Table)<R extends Record,T1,T2,T3,T4,T5,T6,T7>
@NotNull MergeKeyStep7<R,T1,T2,T3,T4,T5,T6,T7>DSLContext. mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7)Deprecated.- [#10045] - 3.14.0 - Use the standard SQL MERGE API instead, viaDSLContext.mergeInto(Table)<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8>
@NotNull MergeKeyStep8<R,T1,T2,T3,T4,T5,T6,T7,T8>DSLContext. mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8)Deprecated.- [#10045] - 3.14.0 - Use the standard SQL MERGE API instead, viaDSLContext.mergeInto(Table)<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9>
@NotNull MergeKeyStep9<R,T1,T2,T3,T4,T5,T6,T7,T8,T9>DSLContext. mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9)Deprecated.- [#10045] - 3.14.0 - Use the standard SQL MERGE API instead, viaDSLContext.mergeInto(Table)<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10>
@NotNull MergeKeyStep10<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10>DSLContext. mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10)Deprecated.- [#10045] - 3.14.0 - Use the standard SQL MERGE API instead, viaDSLContext.mergeInto(Table)<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>
@NotNull MergeKeyStep11<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>DSLContext. mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11)Deprecated.- [#10045] - 3.14.0 - Use the standard SQL MERGE API instead, viaDSLContext.mergeInto(Table)<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12>
@NotNull MergeKeyStep12<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12>DSLContext. mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12)Deprecated.- [#10045] - 3.14.0 - Use the standard SQL MERGE API instead, viaDSLContext.mergeInto(Table)<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13>
@NotNull MergeKeyStep13<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13>DSLContext. mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13)Deprecated.- [#10045] - 3.14.0 - Use the standard SQL MERGE API instead, viaDSLContext.mergeInto(Table)<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14>
@NotNull MergeKeyStep14<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14>DSLContext. mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14)Deprecated.- [#10045] - 3.14.0 - Use the standard SQL MERGE API instead, viaDSLContext.mergeInto(Table)<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15>
@NotNull MergeKeyStep15<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15>DSLContext. mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15)Deprecated.- [#10045] - 3.14.0 - Use the standard SQL MERGE API instead, viaDSLContext.mergeInto(Table)<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16>
@NotNull MergeKeyStep16<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16>DSLContext. mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16)Deprecated.- [#10045] - 3.14.0 - Use the standard SQL MERGE API instead, viaDSLContext.mergeInto(Table)<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17>
@NotNull MergeKeyStep17<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17>DSLContext. mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17)Deprecated.- [#10045] - 3.14.0 - Use the standard SQL MERGE API instead, viaDSLContext.mergeInto(Table)<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18>
@NotNull MergeKeyStep18<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18>DSLContext. mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17, Field<T18> field18)Deprecated.- [#10045] - 3.14.0 - Use the standard SQL MERGE API instead, viaDSLContext.mergeInto(Table)<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19>
@NotNull MergeKeyStep19<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19>DSLContext. mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17, Field<T18> field18, Field<T19> field19)Deprecated.- [#10045] - 3.14.0 - Use the standard SQL MERGE API instead, viaDSLContext.mergeInto(Table)<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20>
@NotNull MergeKeyStep20<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20>DSLContext. mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17, Field<T18> field18, Field<T19> field19, Field<T20> field20)Deprecated.- [#10045] - 3.14.0 - Use the standard SQL MERGE API instead, viaDSLContext.mergeInto(Table)<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21>
@NotNull MergeKeyStep21<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21>DSLContext. mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17, Field<T18> field18, Field<T19> field19, Field<T20> field20, Field<T21> field21)Deprecated.- [#10045] - 3.14.0 - Use the standard SQL MERGE API instead, viaDSLContext.mergeInto(Table)<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21,T22>
@NotNull MergeKeyStep22<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21,T22>DSLContext. mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17, Field<T18> field18, Field<T19> field19, Field<T20> field20, Field<T21> field21, Field<T22> field22)Deprecated.- [#10045] - 3.14.0 - Use the standard SQL MERGE API instead, viaDSLContext.mergeInto(Table)<R extends Record>
@NotNull MergeUsingStep<R>WithStep. mergeInto(Table<R> table)Create a new DSL SQL standard MERGE statement.<R extends Record>
@NotNull MergeKeyStepN<R>WithStep. mergeInto(Table<R> table, Collection<? extends Field<?>> fields)Create a new DSL merge statement (H2-specific syntax).<R extends Record>
@NotNull MergeKeyStepN<R>WithStep. mergeInto(Table<R> table, Field<?>... fields)Create a new DSL merge statement (H2-specific syntax).<R extends Record,T1>
@NotNull MergeKeyStep1<R,T1>WithStep. mergeInto(Table<R> table, Field<T1> field1)Deprecated.- [#10045] - 3.14.0 - Use the standard SQL MERGE API instead, viaWithStep.mergeInto(Table)<R extends Record,T1,T2>
@NotNull MergeKeyStep2<R,T1,T2>WithStep. mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2)Deprecated.- [#10045] - 3.14.0 - Use the standard SQL MERGE API instead, viaWithStep.mergeInto(Table)<R extends Record,T1,T2,T3>
@NotNull MergeKeyStep3<R,T1,T2,T3>WithStep. mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3)Deprecated.- [#10045] - 3.14.0 - Use the standard SQL MERGE API instead, viaWithStep.mergeInto(Table)<R extends Record,T1,T2,T3,T4>
@NotNull MergeKeyStep4<R,T1,T2,T3,T4>WithStep. mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4)Deprecated.- [#10045] - 3.14.0 - Use the standard SQL MERGE API instead, viaWithStep.mergeInto(Table)<R extends Record,T1,T2,T3,T4,T5>
@NotNull MergeKeyStep5<R,T1,T2,T3,T4,T5>WithStep. mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5)Deprecated.- [#10045] - 3.14.0 - Use the standard SQL MERGE API instead, viaWithStep.mergeInto(Table)<R extends Record,T1,T2,T3,T4,T5,T6>
@NotNull MergeKeyStep6<R,T1,T2,T3,T4,T5,T6>WithStep. mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6)Deprecated.- [#10045] - 3.14.0 - Use the standard SQL MERGE API instead, viaWithStep.mergeInto(Table)<R extends Record,T1,T2,T3,T4,T5,T6,T7>
@NotNull MergeKeyStep7<R,T1,T2,T3,T4,T5,T6,T7>WithStep. mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7)Deprecated.- [#10045] - 3.14.0 - Use the standard SQL MERGE API instead, viaWithStep.mergeInto(Table)<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8>
@NotNull MergeKeyStep8<R,T1,T2,T3,T4,T5,T6,T7,T8>WithStep. mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8)Deprecated.- [#10045] - 3.14.0 - Use the standard SQL MERGE API instead, viaWithStep.mergeInto(Table)<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9>
@NotNull MergeKeyStep9<R,T1,T2,T3,T4,T5,T6,T7,T8,T9>WithStep. mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9)Deprecated.- [#10045] - 3.14.0 - Use the standard SQL MERGE API instead, viaWithStep.mergeInto(Table)<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10>
@NotNull MergeKeyStep10<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10>WithStep. mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10)Deprecated.- [#10045] - 3.14.0 - Use the standard SQL MERGE API instead, viaWithStep.mergeInto(Table)<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>
@NotNull MergeKeyStep11<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>WithStep. mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11)Deprecated.- [#10045] - 3.14.0 - Use the standard SQL MERGE API instead, viaWithStep.mergeInto(Table)<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12>
@NotNull MergeKeyStep12<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12>WithStep. mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12)Deprecated.- [#10045] - 3.14.0 - Use the standard SQL MERGE API instead, viaWithStep.mergeInto(Table)<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13>
@NotNull MergeKeyStep13<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13>WithStep. mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13)Deprecated.- [#10045] - 3.14.0 - Use the standard SQL MERGE API instead, viaWithStep.mergeInto(Table)<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14>
@NotNull MergeKeyStep14<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14>WithStep. mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14)Deprecated.- [#10045] - 3.14.0 - Use the standard SQL MERGE API instead, viaWithStep.mergeInto(Table)<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15>
@NotNull MergeKeyStep15<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15>WithStep. mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15)Deprecated.- [#10045] - 3.14.0 - Use the standard SQL MERGE API instead, viaWithStep.mergeInto(Table)<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16>
@NotNull MergeKeyStep16<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16>WithStep. mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16)Deprecated.- [#10045] - 3.14.0 - Use the standard SQL MERGE API instead, viaWithStep.mergeInto(Table)<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17>
@NotNull MergeKeyStep17<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17>WithStep. mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17)Deprecated.- [#10045] - 3.14.0 - Use the standard SQL MERGE API instead, viaWithStep.mergeInto(Table)<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18>
@NotNull MergeKeyStep18<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18>WithStep. mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17, Field<T18> field18)Deprecated.- [#10045] - 3.14.0 - Use the standard SQL MERGE API instead, viaWithStep.mergeInto(Table)<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19>
@NotNull MergeKeyStep19<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19>WithStep. mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17, Field<T18> field18, Field<T19> field19)Deprecated.- [#10045] - 3.14.0 - Use the standard SQL MERGE API instead, viaWithStep.mergeInto(Table)<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20>
@NotNull MergeKeyStep20<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20>WithStep. mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17, Field<T18> field18, Field<T19> field19, Field<T20> field20)Deprecated.- [#10045] - 3.14.0 - Use the standard SQL MERGE API instead, viaWithStep.mergeInto(Table)<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21>
@NotNull MergeKeyStep21<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21>WithStep. mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17, Field<T18> field18, Field<T19> field19, Field<T20> field20, Field<T21> field21)Deprecated.- [#10045] - 3.14.0 - Use the standard SQL MERGE API instead, viaWithStep.mergeInto(Table)<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21,T22>
@NotNull MergeKeyStep22<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21,T22>WithStep. mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17, Field<T18> field18, Field<T19> field19, Field<T20> field20, Field<T21> field21, Field<T22> field22)Deprecated.- [#10045] - 3.14.0 - Use the standard SQL MERGE API instead, viaWithStep.mergeInto(Table)@NotNull MetaDSLContext. meta(Table<?>... tables)Access the database meta data from explicit table information.@NotNull ConditionTable. ne(Table<R> table)Create a predicate comparing records from self-non-equi-joined tables.<R extends Record>
RDSLContext. newRecord(Table<R> table)Create a newRecordthat can be inserted into the corresponding table.<R extends Record>
RDSLContext. newRecord(Table<R> table, Object source)Create a new pre-filledRecordthat can be inserted into the corresponding table.<R extends Record>
@NotNull Result<R>DSLContext. newResult(Table<R> table)Create a new emptyResult.@NotNull ConditionTable. notEqual(Table<R> table)Create a predicate comparing records from self-non-equi-joined tables.@NotNull SelectForUpdateWaitStep<R>SelectForUpdateOfStep. of(Table<?>... tables)Add anOFclause to theFOR <lock_mode>clause at the end of the query.@NotNull AlterIndexStepAlterIndexOnStep. on(Table<?> table)Specify the table expression on which to alter an index.@NotNull CreateIndexIncludeStepCreateIndexStep. on(Table<?> table, Collection<? extends OrderField<?>> fields)Specify the table and column expressions on which to create an index.@NotNull CreateIndexIncludeStepCreateIndexStep. on(Table<?> table, OrderField<?>... fields)Specify the table and column expressions on which to create an index.@NotNull DropIndexCascadeStepDropIndexOnStep. on(Table<?> table)Specify the table expression on which to drop an index.@NotNull GrantToStepGrantOnStep. on(Table<?> on)Add theONclause to theGRANTstatement.@NotNull RevokeFromStepRevokeOnStep. on(Table<?> on)Add theONclause to theREVOKEstatement.@NotNull ConstraintForeignKeyOnStepConstraintForeignKeyReferencesStep1. references(Table<?> table)Add aREFERENCESclause to theCONSTRAINT, implicitly referencing the primary key.@NotNull ConstraintForeignKeyOnStepConstraintForeignKeyReferencesStep1. references(Table<?> table, Field<T1> field1)Add aREFERENCESclause to theCONSTRAINT, referencing a key by column names.@NotNull ConstraintForeignKeyOnStepConstraintForeignKeyReferencesStep10. references(Table<?> table)Add aREFERENCESclause to theCONSTRAINT, implicitly referencing the primary key.@NotNull ConstraintForeignKeyOnStepConstraintForeignKeyReferencesStep10. references(Table<?> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10)Add aREFERENCESclause to theCONSTRAINT, referencing a key by column names.@NotNull ConstraintForeignKeyOnStepConstraintForeignKeyReferencesStep11. references(Table<?> table)Add aREFERENCESclause to theCONSTRAINT, implicitly referencing the primary key.@NotNull ConstraintForeignKeyOnStepConstraintForeignKeyReferencesStep11. references(Table<?> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11)Add aREFERENCESclause to theCONSTRAINT, referencing a key by column names.@NotNull ConstraintForeignKeyOnStepConstraintForeignKeyReferencesStep12. references(Table<?> table)Add aREFERENCESclause to theCONSTRAINT, implicitly referencing the primary key.@NotNull ConstraintForeignKeyOnStepConstraintForeignKeyReferencesStep12. references(Table<?> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12)Add aREFERENCESclause to theCONSTRAINT, referencing a key by column names.@NotNull ConstraintForeignKeyOnStepConstraintForeignKeyReferencesStep13. references(Table<?> table)Add aREFERENCESclause to theCONSTRAINT, implicitly referencing the primary key.@NotNull ConstraintForeignKeyOnStepConstraintForeignKeyReferencesStep13. references(Table<?> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13)Add aREFERENCESclause to theCONSTRAINT, referencing a key by column names.@NotNull ConstraintForeignKeyOnStepConstraintForeignKeyReferencesStep14. references(Table<?> table)Add aREFERENCESclause to theCONSTRAINT, implicitly referencing the primary key.@NotNull ConstraintForeignKeyOnStepConstraintForeignKeyReferencesStep14. references(Table<?> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14)Add aREFERENCESclause to theCONSTRAINT, referencing a key by column names.@NotNull ConstraintForeignKeyOnStepConstraintForeignKeyReferencesStep15. references(Table<?> table)Add aREFERENCESclause to theCONSTRAINT, implicitly referencing the primary key.@NotNull ConstraintForeignKeyOnStepConstraintForeignKeyReferencesStep15. references(Table<?> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15)Add aREFERENCESclause to theCONSTRAINT, referencing a key by column names.@NotNull ConstraintForeignKeyOnStepConstraintForeignKeyReferencesStep16. references(Table<?> table)Add aREFERENCESclause to theCONSTRAINT, implicitly referencing the primary key.@NotNull ConstraintForeignKeyOnStepConstraintForeignKeyReferencesStep16. references(Table<?> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16)Add aREFERENCESclause to theCONSTRAINT, referencing a key by column names.@NotNull ConstraintForeignKeyOnStepConstraintForeignKeyReferencesStep17. references(Table<?> table)Add aREFERENCESclause to theCONSTRAINT, implicitly referencing the primary key.@NotNull ConstraintForeignKeyOnStepConstraintForeignKeyReferencesStep17. references(Table<?> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17)Add aREFERENCESclause to theCONSTRAINT, referencing a key by column names.@NotNull ConstraintForeignKeyOnStepConstraintForeignKeyReferencesStep18. references(Table<?> table)Add aREFERENCESclause to theCONSTRAINT, implicitly referencing the primary key.@NotNull ConstraintForeignKeyOnStepConstraintForeignKeyReferencesStep18. references(Table<?> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17, Field<T18> field18)Add aREFERENCESclause to theCONSTRAINT, referencing a key by column names.@NotNull ConstraintForeignKeyOnStepConstraintForeignKeyReferencesStep19. references(Table<?> table)Add aREFERENCESclause to theCONSTRAINT, implicitly referencing the primary key.@NotNull ConstraintForeignKeyOnStepConstraintForeignKeyReferencesStep19. references(Table<?> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17, Field<T18> field18, Field<T19> field19)Add aREFERENCESclause to theCONSTRAINT, referencing a key by column names.@NotNull ConstraintForeignKeyOnStepConstraintForeignKeyReferencesStep2. references(Table<?> table)Add aREFERENCESclause to theCONSTRAINT, implicitly referencing the primary key.@NotNull ConstraintForeignKeyOnStepConstraintForeignKeyReferencesStep2. references(Table<?> table, Field<T1> field1, Field<T2> field2)Add aREFERENCESclause to theCONSTRAINT, referencing a key by column names.@NotNull ConstraintForeignKeyOnStepConstraintForeignKeyReferencesStep20. references(Table<?> table)Add aREFERENCESclause to theCONSTRAINT, implicitly referencing the primary key.@NotNull ConstraintForeignKeyOnStepConstraintForeignKeyReferencesStep20. references(Table<?> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17, Field<T18> field18, Field<T19> field19, Field<T20> field20)Add aREFERENCESclause to theCONSTRAINT, referencing a key by column names.@NotNull ConstraintForeignKeyOnStepConstraintForeignKeyReferencesStep21. references(Table<?> table)Add aREFERENCESclause to theCONSTRAINT, implicitly referencing the primary key.@NotNull ConstraintForeignKeyOnStepConstraintForeignKeyReferencesStep21. references(Table<?> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17, Field<T18> field18, Field<T19> field19, Field<T20> field20, Field<T21> field21)Add aREFERENCESclause to theCONSTRAINT, referencing a key by column names.@NotNull ConstraintForeignKeyOnStepConstraintForeignKeyReferencesStep22. references(Table<?> table)Add aREFERENCESclause to theCONSTRAINT, implicitly referencing the primary key.@NotNull ConstraintForeignKeyOnStepConstraintForeignKeyReferencesStep22. references(Table<?> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17, Field<T18> field18, Field<T19> field19, Field<T20> field20, Field<T21> field21, Field<T22> field22)Add aREFERENCESclause to theCONSTRAINT, referencing a key by column names.@NotNull ConstraintForeignKeyOnStepConstraintForeignKeyReferencesStep3. references(Table<?> table)Add aREFERENCESclause to theCONSTRAINT, implicitly referencing the primary key.@NotNull ConstraintForeignKeyOnStepConstraintForeignKeyReferencesStep3. references(Table<?> table, Field<T1> field1, Field<T2> field2, Field<T3> field3)Add aREFERENCESclause to theCONSTRAINT, referencing a key by column names.@NotNull ConstraintForeignKeyOnStepConstraintForeignKeyReferencesStep4. references(Table<?> table)Add aREFERENCESclause to theCONSTRAINT, implicitly referencing the primary key.@NotNull ConstraintForeignKeyOnStepConstraintForeignKeyReferencesStep4. references(Table<?> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4)Add aREFERENCESclause to theCONSTRAINT, referencing a key by column names.@NotNull ConstraintForeignKeyOnStepConstraintForeignKeyReferencesStep5. references(Table<?> table)Add aREFERENCESclause to theCONSTRAINT, implicitly referencing the primary key.@NotNull ConstraintForeignKeyOnStepConstraintForeignKeyReferencesStep5. references(Table<?> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5)Add aREFERENCESclause to theCONSTRAINT, referencing a key by column names.@NotNull ConstraintForeignKeyOnStepConstraintForeignKeyReferencesStep6. references(Table<?> table)Add aREFERENCESclause to theCONSTRAINT, implicitly referencing the primary key.@NotNull ConstraintForeignKeyOnStepConstraintForeignKeyReferencesStep6. references(Table<?> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6)Add aREFERENCESclause to theCONSTRAINT, referencing a key by column names.@NotNull ConstraintForeignKeyOnStepConstraintForeignKeyReferencesStep7. references(Table<?> table)Add aREFERENCESclause to theCONSTRAINT, implicitly referencing the primary key.@NotNull ConstraintForeignKeyOnStepConstraintForeignKeyReferencesStep7. references(Table<?> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7)Add aREFERENCESclause to theCONSTRAINT, referencing a key by column names.@NotNull ConstraintForeignKeyOnStepConstraintForeignKeyReferencesStep8. references(Table<?> table)Add aREFERENCESclause to theCONSTRAINT, implicitly referencing the primary key.@NotNull ConstraintForeignKeyOnStepConstraintForeignKeyReferencesStep8. references(Table<?> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8)Add aREFERENCESclause to theCONSTRAINT, referencing a key by column names.@NotNull ConstraintForeignKeyOnStepConstraintForeignKeyReferencesStep9. references(Table<?> table)Add aREFERENCESclause to theCONSTRAINT, implicitly referencing the primary key.@NotNull ConstraintForeignKeyOnStepConstraintForeignKeyReferencesStep9. references(Table<?> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9)Add aREFERENCESclause to theCONSTRAINT, referencing a key by column names.ConstraintForeignKeyOnStepConstraintForeignKeyReferencesStepN. references(Table<?> table)Add aREFERENCESclause to theCONSTRAINT, implicitly referencing the primary key.ConstraintForeignKeyOnStepConstraintForeignKeyReferencesStepN. references(Table<?> table, Field<?>... fields)Add aREFERENCESclause to theCONSTRAINT, referencing a key by column names.@NotNull AlterTableFinalStepAlterTableStep. renameTo(Table<?> newName)Add aRENAME TOclause to theALTER TABLEstatement.@NotNull AlterViewFinalStepAlterViewStep. renameTo(Table<?> newName)Add aRENAME TOclause to theALTER VIEWstatement.<R extends Record>
@NotNull SelectWhereStep<R>DSLContext. selectFrom(Table<R> table)Create a new DSL select statement, projecting the known columns from a table.<R extends Record>
@NotNull SelectWhereStep<R>WithStep. selectFrom(Table<R> table)Create a new DSL select statement, projecting the known columns from a table.voidSelectQuery. setForLockModeOf(Table<?>... tables)Some RDBMS allow for specifying the tables that should be locked by theFOR <lock_mode>clause, instead of the full row.voidSelectQuery. setForUpdateOf(Table<?>... tables)Deprecated.[#5218] - 3.14.0 - UseSelectQuery.setForLockModeOf(Table...)voidSelectQuery. setInto(Table<?> table)AddINTOclause to theSELECTstatement.<R extends Record>
@NotNull TruncateIdentityStep<R>DSLContext. truncate(Table<R> table)Create a new DSL truncate statement.<R extends Record>
@NotNull TruncateIdentityStep<R>DSLContext. truncateTable(Table<R> table)Create a new DSL truncate statement.<R extends Record>
@NotNull UpdateSetFirstStep<R>DSLContext. update(Table<R> table)Create a new DSL update statement.<R extends Record>
@NotNull UpdateSetFirstStep<R>WithStep. update(Table<R> table)Create a new DSL update statement.<R extends Record>
@NotNull UpdateQuery<R>DSLContext. updateQuery(Table<R> table)Create a newUpdateQueryMethod parameters in org.jooq with type arguments of type Table Modifier and Type Method Description @NotNull QueriesDSLContext. ddl(Collection<? extends Table<?>> tables)Convenience method forMeta.ddl().@NotNull QueriesDSLContext. ddl(Collection<? extends Table<?>> tables, DDLExportConfiguration configuration)Convenience method forMeta.ddl(DDLExportConfiguration).@NotNull QueriesDSLContext. ddl(Collection<? extends Table<?>> tables, DDLFlag... flags)Convenience method forMeta.ddl(DDLExportConfiguration).@NotNull MetaMeta. filterTables(Meta.Predicate<? super Table<?>> filter)Create a wrapperMetainstance filtering out some tables. -
Uses of Table in org.jooq.impl
Classes in org.jooq.impl that implement Table Modifier and Type Class Description classCustomTable<R extends TableRecord<R>>A base class for customTableimplementations in client code.classTableImpl<R extends Record>A common base type for tablesMethods in org.jooq.impl that return Table Modifier and Type Method Description Table<R>TableImpl. as(Name as)Subclasses may override this method to provide custom aliasing implementationsTable<R>TableImpl. as(Name as, Name... fieldAliases)Subclasses may override this method to provide custom aliasing implementations<O extends TableRecord<O>>
Table<O>UpdatableRecordImpl. children(ForeignKey<O,R> key)static @NotNull Table<Record>DSL. dual()TheDUALtable to be used for syntactic completeness.static @NotNull Table<Record1<Integer>>DSL. generateSeries(int from, int to)A table function generating a series of values fromfromtoto(inclusive).static @NotNull Table<Record1<Integer>>DSL. generateSeries(int from, int to, int step)A table function generating a series of values fromfromtoto(inclusive), increasing values bystep.static @NotNull Table<Record1<Integer>>DSL. generateSeries(int from, int to, Field<Integer> step)A table function generating a series of values fromfromtoto(inclusive), increasing values bystep.static @NotNull Table<Record1<Integer>>DSL. generateSeries(int from, Field<Integer> to)A table function generating a series of values fromfromtoto(inclusive).static @NotNull Table<Record1<Integer>>DSL. generateSeries(int from, Field<Integer> to, int step)A table function generating a series of values fromfromtoto(inclusive), increasing values bystep.static @NotNull Table<Record1<Integer>>DSL. generateSeries(int from, Field<Integer> to, Field<Integer> step)A table function generating a series of values fromfromtoto(inclusive), increasing values bystep.static @NotNull Table<Record1<Integer>>DSL. generateSeries(Field<Integer> from, int to)A table function generating a series of values fromfromtoto(inclusive).static @NotNull Table<Record1<Integer>>DSL. generateSeries(Field<Integer> from, int to, int step)A table function generating a series of values fromfromtoto(inclusive), increasing values bystep.static @NotNull Table<Record1<Integer>>DSL. generateSeries(Field<Integer> from, int to, Field<Integer> step)A table function generating a series of values fromfromtoto(inclusive), increasing values bystep.static @NotNull Table<Record1<Integer>>DSL. generateSeries(Field<Integer> from, Field<Integer> to)A table function generating a series of values fromfromtoto(inclusive).static @NotNull Table<Record1<Integer>>DSL. generateSeries(Field<Integer> from, Field<Integer> to, int step)A table function generating a series of values fromfromtoto(inclusive), increasing values bystep.static @NotNull Table<Record1<Integer>>DSL. generateSeries(Field<Integer> from, Field<Integer> to, Field<Integer> step)A table function generating a series of values fromfromtoto(inclusive), increasing values bystep.Table<R>DAOImpl. getTable()Table<?>LazySchema. getTable(String name)Table<?>LazySchema. getTable(Name name)Table<?>SchemaImpl. getTable(String name)Table<?>SchemaImpl. getTable(Name name)Table<R>TableRecordImpl. getTable()static <R extends Record>
@NotNull Table<R>DSL. lateral(TableLike<R> table)Create aLATERALjoined table.<R extends Record>
Table<R>DefaultDSLContext. map(Table<R> table)<O extends UpdatableRecord<O>>
Table<O>TableRecordImpl. parent(ForeignKey<R,O> key)Table<R>TableImpl. rename(String rename)Table<R>TableImpl. rename(Name rename)static @NotNull Table<Record>DSL. rowsFrom(Table<?>... tables)Create aROWS FROM (tables...)expression.static @NotNull Table<?>DSL. table(Object[] array)A synonym forDSL.unnest(Object[]).static @NotNull Table<Record>DSL. table(String sql)A custom SQL clause that can render arbitrary table expressions.static @NotNull Table<Record>DSL. table(String sql, Object... bindings)A custom SQL clause that can render arbitrary table expressions.static @NotNull Table<Record>DSL. table(String sql, QueryPart... parts)A custom SQL clause that can render arbitrary table expressions.static @NotNull Table<?>DSL. table(Collection<?> list)A synonym forDSL.unnest(Collection).static @NotNull Table<?>DSL. table(ArrayRecord<?> array)A synonym forDSL.unnest(ArrayRecord).static @NotNull Table<?>DSL. table(Field<?> cursor)A synonym forDSL.unnest(Field).static @NotNull Table<Record>DSL. table(Name name)Create a qualified table, given its table name.static @NotNull Table<Record>DSL. table(Name name, Comment comment)Create a qualified table, given its table name.static <R extends Record>
@NotNull Table<R>DSL. table(Result<R> result)Use a previously obtained result as a newTablethat can be used in SQL statements throughDSL.values(RowN...).static <R extends Record>
@NotNull Table<R>DSL. table(Select<R> select)A synonym forTableLike.asTable(), which might look a bit more fluent like this, to some users.static @NotNull Table<Record>DSL. table(SQL sql)A custom SQL clause that can render arbitrary table expressions.static <R extends Record>
@NotNull Table<R>DSL. table(R record)Use a previously obtained record as a new Tablestatic <R extends Record>
@NotNull Table<R>DSL. table(R... records)Use a previously obtained set of records as a new Tablestatic @NotNull Table<Record>DSL. tableByName(String... qualifiedName)Deprecated.- [#3843] - 3.6.0 - useDSL.table(Name)insteadstatic @NotNull Table<?>DSL. unnest(Object[] array)Create a table from an array of values.static @NotNull Table<?>DSL. unnest(Collection<?> list)Create a table from a list of values.static @NotNull Table<?>DSL. unnest(ArrayRecord<?> array)Create a table from an array of values.static @NotNull Table<?>DSL. unnest(Field<?> cursor)Create a table from a field.static <T1> @NotNull Table<Record1<T1>>DSL. values(Row1<T1>... rows)Create aVALUES()expression of degree1.static <T1,T2,T3,T4,T5,T6,T7,T8,T9,T10>
@NotNull Table<Record10<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10>>DSL. values(Row10<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10>... rows)Create aVALUES()expression of degree10.static <T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>
@NotNull Table<Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>>DSL. values(Row11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>... rows)Create aVALUES()expression of degree11.static <T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12>
@NotNull Table<Record12<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12>>DSL. values(Row12<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12>... rows)Create aVALUES()expression of degree12.static <T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13>
@NotNull Table<Record13<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13>>DSL. values(Row13<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13>... rows)Create aVALUES()expression of degree13.static <T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14>
@NotNull Table<Record14<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14>>DSL. values(Row14<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14>... rows)Create aVALUES()expression of degree14.static <T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15>
@NotNull Table<Record15<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15>>DSL. values(Row15<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15>... rows)Create aVALUES()expression of degree15.static <T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16>
@NotNull Table<Record16<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16>>DSL. values(Row16<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16>... rows)Create aVALUES()expression of degree16.static <T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17>
@NotNull Table<Record17<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17>>DSL. values(Row17<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17>... rows)Create aVALUES()expression of degree17.static <T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18>
@NotNull Table<Record18<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18>>DSL. values(Row18<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18>... rows)Create aVALUES()expression of degree18.static <T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19>
@NotNull Table<Record19<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19>>DSL. values(Row19<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19>... rows)Create aVALUES()expression of degree19.static <T1,T2>
@NotNull Table<Record2<T1,T2>>DSL. values(Row2<T1,T2>... rows)Create aVALUES()expression of degree2.static <T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20>
@NotNull Table<Record20<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20>>DSL. values(Row20<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20>... rows)Create aVALUES()expression of degree20.static <T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21>
@NotNull Table<Record21<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21>>DSL. values(Row21<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21>... rows)Create aVALUES()expression of degree21.static <T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21,T22>
@NotNull Table<Record22<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21,T22>>DSL. values(Row22<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21,T22>... rows)Create aVALUES()expression of degree22.static <T1,T2,T3>
@NotNull Table<Record3<T1,T2,T3>>DSL. values(Row3<T1,T2,T3>... rows)Create aVALUES()expression of degree3.static <T1,T2,T3,T4>
@NotNull Table<Record4<T1,T2,T3,T4>>DSL. values(Row4<T1,T2,T3,T4>... rows)Create aVALUES()expression of degree4.static <T1,T2,T3,T4,T5>
@NotNull Table<Record5<T1,T2,T3,T4,T5>>DSL. values(Row5<T1,T2,T3,T4,T5>... rows)Create aVALUES()expression of degree5.static <T1,T2,T3,T4,T5,T6>
@NotNull Table<Record6<T1,T2,T3,T4,T5,T6>>DSL. values(Row6<T1,T2,T3,T4,T5,T6>... rows)Create aVALUES()expression of degree6.static <T1,T2,T3,T4,T5,T6,T7>
@NotNull Table<Record7<T1,T2,T3,T4,T5,T6,T7>>DSL. values(Row7<T1,T2,T3,T4,T5,T6,T7>... rows)Create aVALUES()expression of degree7.static <T1,T2,T3,T4,T5,T6,T7,T8>
@NotNull Table<Record8<T1,T2,T3,T4,T5,T6,T7,T8>>DSL. values(Row8<T1,T2,T3,T4,T5,T6,T7,T8>... rows)Create aVALUES()expression of degree8.static <T1,T2,T3,T4,T5,T6,T7,T8,T9>
@NotNull Table<Record9<T1,T2,T3,T4,T5,T6,T7,T8,T9>>DSL. values(Row9<T1,T2,T3,T4,T5,T6,T7,T8,T9>... rows)Create aVALUES()expression of degree9.static @NotNull Table<Record>DSL. values(RowN... rows)Create aVALUES()expression of arbitrary degree.Methods in org.jooq.impl that return types with arguments of type Table Modifier and Type Method Description List<Table<?>>LazySchema. getTables()List<Table<?>>SchemaImpl. getTables()List all tables contained in this schema.Stream<Table<?>>LazySchema. tableStream()Stream<Table<?>>SchemaImpl. tableStream()Methods in org.jooq.impl with parameters of type Table Modifier and Type Method Description AlterTableStepDefaultDSLContext. alterTable(Table<?> table)static @NotNull AlterTableStepDSL. alterTable(Table<?> table)Create a new DSLALTER TABLEstatement.AlterTableStepDefaultDSLContext. alterTableIfExists(Table<?> table)static @NotNull AlterTableStepDSL. alterTableIfExists(Table<?> table)Create a new DSLALTER TABLEstatement.AlterViewStepDefaultDSLContext. alterView(Table<?> table)static @NotNull AlterViewStepDSL. alterView(Table<?> view)Create a new DSLALTER VIEWstatement.AlterViewStepDefaultDSLContext. alterViewIfExists(Table<?> table)static @NotNull AlterViewStepDSL. alterViewIfExists(Table<?> view)Create a new DSLALTER VIEWstatement.CommentOnIsStepDefaultDSLContext. commentOnTable(Table<?> table)static @NotNull CommentOnIsStepDSL. commentOnTable(Table<?> table)Create a new DSLCOMMENT ON TABLEstatement.CommentOnIsStepDefaultDSLContext. commentOnView(Table<?> view)static @NotNull CommentOnIsStepDSL. commentOnView(Table<?> view)Create a new DSLCOMMENT ON VIEWstatement.static @NotNull AggregateFunction<Integer>DSL. count(Table<?> table)Get the count(table) function.static @NotNull AggregateFunction<Integer>DSL. countDistinct(Table<?> table)Get the count(distinct table) function.static <R extends Record>
@NotNull Check<R>Internal. createCheck(Table<R> table, Name name, String condition)Factory method for check constraints.static <R extends Record>
@NotNull Check<R>Internal. createCheck(Table<R> table, Name name, String condition, boolean enforced)Factory method for check constraints.static <R extends Record,E extends EmbeddableRecord<E>>
@NotNull TableField<R,E>Internal. createEmbeddable(Name name, Class<E> recordType, boolean replacesFields, Table<R> table, TableField<R,?>... fields)Factory method for embeddable types.static <R extends Record,E extends EmbeddableRecord<E>>
@NotNull TableField<R,E>Internal. createEmbeddable(Name name, Class<E> recordType, Table<R> table, TableField<R,?>... fields)Factory method for embeddable types.static <R extends Record,U extends Record>
ForeignKey<R,U>AbstractKeys. createForeignKey(UniqueKey<U> key, Table<R> table, String name, TableField<R,?>... fields)Deprecated.- [#6875] [#7158] - 3.11.0 - Please re-generate your codestatic <R extends Record,U extends Record>
ForeignKey<R,U>AbstractKeys. createForeignKey(UniqueKey<U> key, Table<R> table, TableField<R,?>... fields)Deprecated.- [#6875] [#7158] - 3.11.0 - Please re-generate your codestatic <R extends Record,U extends Record>
@NotNull ForeignKey<R,U>Internal. createForeignKey(Table<R> table, Name name, TableField<R,?>[] fkFields, UniqueKey<U> uk, TableField<U,?>[] ukFields, boolean enforced)Factory method for foreign keys.static <R extends Record,U extends Record,ER extends EmbeddableRecord<ER>>
@NotNull ForeignKey<R,U>Internal. createForeignKey(Table<R> table, Name name, TableField<R,ER> fkEmbeddableField, UniqueKey<U> uk, TableField<U,ER> ukEmbeddableField, boolean enforced)Factory method for foreign keys.static <R extends Record,U extends Record>
@NotNull ForeignKey<R,U>Internal. createForeignKey(UniqueKey<U> key, Table<R> table, String name, TableField<R,?>... fields)Deprecated.- 3.14.0 - [#9404] - Please re-generate your code.static <R extends Record,U extends Record>
@NotNull ForeignKey<R,U>Internal. createForeignKey(UniqueKey<U> key, Table<R> table, String name, TableField<R,?>[] fields, boolean enforced)Deprecated.- 3.14.0 - [#9404] - Please re-generate your code.static <R extends Record,U extends Record>
@NotNull ForeignKey<R,U>Internal. createForeignKey(UniqueKey<U> key, Table<R> table, TableField<R,?>... fields)Deprecated.- 3.14.0 - [#9404] - Please re-generate your code.CreateTableColumnStepDefaultDSLContext. createGlobalTemporaryTable(Table<?> table)static @NotNull CreateTableColumnStepDSL. createGlobalTemporaryTable(Table<?> table)Create a new DSLCREATE GLOBAL TEMPORARY TABLEstatement.static <R extends Record,T>
Identity<R,T>AbstractKeys. createIdentity(Table<R> table, TableField<R,T> field)Deprecated.- [#6875] [#7158] - 3.11.0 - Please re-generate your codestatic <R extends Record,T>
@NotNull Identity<R,T>Internal. createIdentity(Table<R> table, TableField<R,T> field)Factory method for identities.static IndexAbstractKeys. createIndex(String name, Table<?> table, OrderField<?>[] sortFields, boolean unique)Deprecated.- [#6875] [#7158] - 3.11.0 - Please re-generate your codestatic @NotNull IndexInternal. createIndex(String name, Table<?> table, OrderField<?>[] sortFields, boolean unique)Deprecated.- 3.14.0 - [#9404] - Please re-generate your code.static @NotNull IndexInternal. createIndex(Name name, Table<?> table, OrderField<?>[] sortFields, boolean unique)Factory method for indexes.CreateViewAsStep<Record>DefaultDSLContext. createOrReplaceView(Table<?> view, BiFunction<? super Field<?>,? super Integer,? extends Field<?>> fieldNameFunction)CreateViewAsStep<Record>DefaultDSLContext. createOrReplaceView(Table<?> view, Function<? super Field<?>,? extends Field<?>> fieldNameFunction)CreateViewAsStep<Record>DefaultDSLContext. createOrReplaceView(Table<?> view, Field<?>... fields)static @NotNull CreateViewAsStepDSL. createOrReplaceView(Table<?> view, Function<? super Field<?>,? extends Field<?>> fieldNameFunction)Deprecated.- 3.14.0 - [#10156] - These methods will be removed without replacement from a future jOOQ.static @NotNull CreateViewAsStepDSL. createOrReplaceView(Table<?> view, Field<?>... fields)Create a new DSLCREATE OR REPLACE VIEWstatement.static @NotNull NameInternal. createPathAlias(Table<?> child, ForeignKey<?,?> path)Factory method for path aliases.CreateTableColumnStepDefaultDSLContext. createTable(Table<?> table)static @NotNull CreateTableColumnStepDSL. createTable(Table<?> table)Create a new DSLCREATE TABLEstatement.CreateTableColumnStepDefaultDSLContext. createTableIfNotExists(Table<?> table)static @NotNull CreateTableColumnStepDSL. createTableIfNotExists(Table<?> table)Create a new DSLCREATE TABLEstatement.CreateTableColumnStepDefaultDSLContext. createTemporaryTable(Table<?> table)static @NotNull CreateTableColumnStepDSL. createTemporaryTable(Table<?> table)Create a new DSLCREATE TEMPORARY TABLEstatement.CreateTableColumnStepDefaultDSLContext. createTemporaryTableIfNotExists(Table<?> table)static @NotNull CreateTableColumnStepDSL. createTemporaryTableIfNotExists(Table<?> table)Create a new DSLCREATE TEMPORARY TABLEstatement.static <R extends Record>
UniqueKey<R>AbstractKeys. createUniqueKey(Table<R> table, String name, TableField<R,?>... fields)Deprecated.- [#6875] [#7158] - 3.11.0 - Please re-generate your codestatic <R extends Record>
UniqueKey<R>AbstractKeys. createUniqueKey(Table<R> table, TableField<R,?>... fields)Deprecated.- [#6875] [#7158] - 3.11.0 - Please re-generate your codestatic <R extends Record>
@NotNull UniqueKey<R>Internal. createUniqueKey(Table<R> table, String name, TableField<R,?>... fields)Deprecated.- 3.14.0 - [#9404] - Please re-generate your code.static <R extends Record>
@NotNull UniqueKey<R>Internal. createUniqueKey(Table<R> table, String name, TableField<R,?>[] fields, boolean enforced)Deprecated.- 3.14.0 - [#9404] - Please re-generate your code.static <R extends Record>
@NotNull UniqueKey<R>Internal. createUniqueKey(Table<R> table, Name name, TableField<R,?>... fields)Factory method for unique keys.static <R extends Record>
@NotNull UniqueKey<R>Internal. createUniqueKey(Table<R> table, Name name, TableField<R,?>[] fields, boolean enforced)Factory method for unique keys.static <R extends Record,ER extends EmbeddableRecord<ER>>
@NotNull UniqueKey<R>Internal. createUniqueKey(Table<R> table, Name name, TableField<R,ER> embeddableField, boolean enforced)Factory method for unique keys.static <R extends Record>
@NotNull UniqueKey<R>Internal. createUniqueKey(Table<R> table, TableField<R,?>... fields)Factory method for unique keys.CreateViewAsStep<Record>DefaultDSLContext. createView(Table<?> view, BiFunction<? super Field<?>,? super Integer,? extends Field<?>> fieldNameFunction)CreateViewAsStep<Record>DefaultDSLContext. createView(Table<?> view, Function<? super Field<?>,? extends Field<?>> fieldNameFunction)CreateViewAsStep<Record>DefaultDSLContext. createView(Table<?> view, Field<?>... fields)static @NotNull CreateViewAsStepDSL. createView(Table<?> view, Function<? super Field<?>,? extends Field<?>> fieldNameFunction)Deprecated.- 3.14.0 - [#10156] - These methods will be removed without replacement from a future jOOQ.static @NotNull CreateViewAsStepDSL. createView(Table<?> view, Field<?>... fields)Create a new DSLCREATE VIEWstatement.CreateViewAsStep<Record>DefaultDSLContext. createViewIfNotExists(Table<?> view, BiFunction<? super Field<?>,? super Integer,? extends Field<?>> fieldNameFunction)CreateViewAsStep<Record>DefaultDSLContext. createViewIfNotExists(Table<?> view, Function<? super Field<?>,? extends Field<?>> fieldNameFunction)CreateViewAsStep<Record>DefaultDSLContext. createViewIfNotExists(Table<?> view, Field<?>... fields)static @NotNull CreateViewAsStepDSL. createViewIfNotExists(Table<?> view, Function<? super Field<?>,? extends Field<?>> fieldNameFunction)Deprecated.- 3.14.0 - [#10156] - These methods will be removed without replacement from a future jOOQ.static @NotNull CreateViewAsStepDSL. createViewIfNotExists(Table<?> view, Field<?>... fields)Create a new DSLCREATE VIEW IF NOT EXISTSstatement.QueriesDefaultDSLContext. ddl(Table... tables)QueriesDefaultDSLContext. ddl(Table[] tables, DDLExportConfiguration exportConfiguration)QueriesDefaultDSLContext. ddl(Table[] tables, DDLFlag... flags)QueriesDefaultDSLContext. ddl(Table<?> table)QueriesDefaultDSLContext. ddl(Table<?> table, DDLExportConfiguration exportConfiguration)QueriesDefaultDSLContext. ddl(Table<?> table, DDLFlag... flags)<R extends Record>
DeleteUsingStep<R>DefaultDSLContext. delete(Table<R> table)static <R extends Record>
@NotNull DeleteUsingStep<R>DSL. delete(Table<R> table)Create a new DSL delete statement.<R extends Record>
DeleteUsingStep<R>DefaultDSLContext. deleteFrom(Table<R> table)static <R extends Record>
@NotNull DeleteUsingStep<R>DSL. deleteFrom(Table<R> table)Create a new DSL delete statement.<R extends Record>
DeleteQuery<R>DefaultDSLContext. deleteQuery(Table<R> table)DropTableStepDefaultDSLContext. dropTable(Table<?> table)static @NotNull DropTableStepDSL. dropTable(Table<?> table)Create a new DSLDROP TABLEstatement.DropTableStepDefaultDSLContext. dropTableIfExists(Table<?> table)static @NotNull DropTableStepDSL. dropTableIfExists(Table<?> table)Create a new DSLDROP TABLE IF EXISTSstatement.DropTableStepDefaultDSLContext. dropTemporaryTable(Table<?> table)static @NotNull DropTableStepDSL. dropTemporaryTable(Table<?> table)Create a new DSLDROP TEMPORARY TABLEstatement.DropTableStepDefaultDSLContext. dropTemporaryTableIfExists(Table<?> table)static @NotNull DropTableStepDSL. dropTemporaryTableIfExists(Table<?> table)Create a new DSLDROP TEMPORARY TABLE IF EXISTSstatement.DropViewFinalStepDefaultDSLContext. dropView(Table<?> view)static @NotNull DropViewFinalStepDSL. dropView(Table<?> view)Create a new DSLDROP VIEWstatement.DropViewFinalStepDefaultDSLContext. dropViewIfExists(Table<?> view)static @NotNull DropViewFinalStepDSL. dropViewIfExists(Table<?> view)Create a new DSLDROP VIEW IF EXISTSstatement.<R extends Record>
Result<R>DefaultDSLContext. fetch(Table<R> table)<R extends Record>
Result<R>DefaultDSLContext. fetch(Table<R> table, Collection<? extends Condition> conditions)<R extends Record>
Result<R>DefaultDSLContext. fetch(Table<R> table, Condition condition)<R extends Record>
Result<R>DefaultDSLContext. fetch(Table<R> table, Condition... conditions)<R extends Record>
RDefaultDSLContext. fetchAny(Table<R> table)<R extends Record>
RDefaultDSLContext. fetchAny(Table<R> table, Collection<? extends Condition> conditions)<R extends Record>
RDefaultDSLContext. fetchAny(Table<R> table, Condition condition)<R extends Record>
RDefaultDSLContext. fetchAny(Table<R> table, Condition... conditions)<R extends Record>
CompletionStage<Result<R>>DefaultDSLContext. fetchAsync(Executor executor, Table<R> table)<R extends Record>
CompletionStage<Result<R>>DefaultDSLContext. fetchAsync(Executor executor, Table<R> table, Collection<? extends Condition> conditions)<R extends Record>
CompletionStage<Result<R>>DefaultDSLContext. fetchAsync(Executor executor, Table<R> table, Condition condition)<R extends Record>
CompletionStage<Result<R>>DefaultDSLContext. fetchAsync(Executor executor, Table<R> table, Condition... conditions)<R extends Record>
CompletionStage<Result<R>>DefaultDSLContext. fetchAsync(Table<R> table)<R extends Record>
CompletionStage<Result<R>>DefaultDSLContext. fetchAsync(Table<R> table, Collection<? extends Condition> conditions)<R extends Record>
CompletionStage<Result<R>>DefaultDSLContext. fetchAsync(Table<R> table, Condition condition)<R extends Record>
CompletionStage<Result<R>>DefaultDSLContext. fetchAsync(Table<R> table, Condition... conditions)intDefaultDSLContext. fetchCount(Table<?> table)intDefaultDSLContext. fetchCount(Table<?> table, Collection<? extends Condition> conditions)intDefaultDSLContext. fetchCount(Table<?> table, Condition condition)intDefaultDSLContext. fetchCount(Table<?> table, Condition... conditions)booleanDefaultDSLContext. fetchExists(Table<?> table)booleanDefaultDSLContext. fetchExists(Table<?> table, Collection<? extends Condition> conditions)booleanDefaultDSLContext. fetchExists(Table<?> table, Condition condition)booleanDefaultDSLContext. fetchExists(Table<?> table, Condition... conditions)<R extends Record>
Cursor<R>DefaultDSLContext. fetchLazy(Table<R> table)<R extends Record>
Cursor<R>DefaultDSLContext. fetchLazy(Table<R> table, Collection<? extends Condition> conditions)<R extends Record>
Cursor<R>DefaultDSLContext. fetchLazy(Table<R> table, Condition condition)<R extends Record>
Cursor<R>DefaultDSLContext. fetchLazy(Table<R> table, Condition... conditions)<R extends Record>
RDefaultDSLContext. fetchOne(Table<R> table)<R extends Record>
RDefaultDSLContext. fetchOne(Table<R> table, Collection<? extends Condition> conditions)<R extends Record>
RDefaultDSLContext. fetchOne(Table<R> table, Condition condition)<R extends Record>
RDefaultDSLContext. fetchOne(Table<R> table, Condition... conditions)<R extends Record>
Optional<R>DefaultDSLContext. fetchOptional(Table<R> table)<R extends Record>
Optional<R>DefaultDSLContext. fetchOptional(Table<R> table, Collection<? extends Condition> conditions)<R extends Record>
Optional<R>DefaultDSLContext. fetchOptional(Table<R> table, Condition condition)<R extends Record>
Optional<R>DefaultDSLContext. fetchOptional(Table<R> table, Condition... conditions)<R extends Record>
RDefaultDSLContext. fetchSingle(Table<R> table)<R extends Record>
RDefaultDSLContext. fetchSingle(Table<R> table, Collection<? extends Condition> conditions)<R extends Record>
RDefaultDSLContext. fetchSingle(Table<R> table, Condition condition)<R extends Record>
RDefaultDSLContext. fetchSingle(Table<R> table, Condition... conditions)<R extends Record>
Stream<R>DefaultDSLContext. fetchStream(Table<R> table)<R extends Record>
Stream<R>DefaultDSLContext. fetchStream(Table<R> table, Collection<? extends Condition> conditions)<R extends Record>
Stream<R>DefaultDSLContext. fetchStream(Table<R> table, Condition condition)<R extends Record>
Stream<R>DefaultDSLContext. fetchStream(Table<R> table, Condition... conditions)<T> TDefaultDSLContext. fetchValue(Table<? extends Record1<T>> table)<T> List<T>DefaultDSLContext. fetchValues(Table<? extends Record1<T>> table)voidArrayRecordImpl. formatInsert(Writer writer, Table<?> table, Field<?>... fields)InformationSchemaDefaultDSLContext. informationSchema(Table<?> table)InformationSchemaDefaultDSLContext. informationSchema(Table<?>... tables)<R extends Record>
InsertSetStep<R>DefaultDSLContext. insertInto(Table<R> into)<R extends Record>
InsertValuesStepN<R>DefaultDSLContext. insertInto(Table<R> into, Collection<? extends Field<?>> fields)<R extends Record>
InsertValuesStepN<R>DefaultDSLContext. insertInto(Table<R> into, Field<?>... fields)<R extends Record,T1>
InsertValuesStep1<R,T1>DefaultDSLContext. insertInto(Table<R> into, Field<T1> field1)<R extends Record,T1,T2>
InsertValuesStep2<R,T1,T2>DefaultDSLContext. insertInto(Table<R> into, Field<T1> field1, Field<T2> field2)<R extends Record,T1,T2,T3>
InsertValuesStep3<R,T1,T2,T3>DefaultDSLContext. insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3)<R extends Record,T1,T2,T3,T4>
InsertValuesStep4<R,T1,T2,T3,T4>DefaultDSLContext. insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4)<R extends Record,T1,T2,T3,T4,T5>
InsertValuesStep5<R,T1,T2,T3,T4,T5>DefaultDSLContext. insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5)<R extends Record,T1,T2,T3,T4,T5,T6>
InsertValuesStep6<R,T1,T2,T3,T4,T5,T6>DefaultDSLContext. insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6)<R extends Record,T1,T2,T3,T4,T5,T6,T7>
InsertValuesStep7<R,T1,T2,T3,T4,T5,T6,T7>DefaultDSLContext. insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7)<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8>
InsertValuesStep8<R,T1,T2,T3,T4,T5,T6,T7,T8>DefaultDSLContext. insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8)<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9>
InsertValuesStep9<R,T1,T2,T3,T4,T5,T6,T7,T8,T9>DefaultDSLContext. insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9)<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10>
InsertValuesStep10<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10>DefaultDSLContext. insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10)<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>
InsertValuesStep11<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>DefaultDSLContext. insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11)<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12>
InsertValuesStep12<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12>DefaultDSLContext. insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12)<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13>
InsertValuesStep13<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13>DefaultDSLContext. insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13)<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14>
InsertValuesStep14<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14>DefaultDSLContext. insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14)<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15>
InsertValuesStep15<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15>DefaultDSLContext. insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15)<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16>
InsertValuesStep16<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16>DefaultDSLContext. insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16)<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17>
InsertValuesStep17<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17>DefaultDSLContext. insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17)<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18>
InsertValuesStep18<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18>DefaultDSLContext. insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17, Field<T18> field18)<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19>
InsertValuesStep19<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19>DefaultDSLContext. insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17, Field<T18> field18, Field<T19> field19)<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20>
InsertValuesStep20<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20>DefaultDSLContext. insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17, Field<T18> field18, Field<T19> field19, Field<T20> field20)<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21>
InsertValuesStep21<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21>DefaultDSLContext. insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17, Field<T18> field18, Field<T19> field19, Field<T20> field20, Field<T21> field21)<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21,T22>
InsertValuesStep22<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21,T22>DefaultDSLContext. insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17, Field<T18> field18, Field<T19> field19, Field<T20> field20, Field<T21> field21, Field<T22> field22)static <R extends Record>
@NotNull InsertSetStep<R>DSL. insertInto(Table<R> into)Create a new DSL insert statement.static <R extends Record>
@NotNull InsertValuesStepN<R>DSL. insertInto(Table<R> into, Collection<? extends Field<?>> fields)Create a new DSL insert statement.static <R extends Record>
@NotNull InsertValuesStepN<R>DSL. insertInto(Table<R> into, Field<?>... fields)Create a new DSL insert statement.static <R extends Record,T1>
@NotNull InsertValuesStep1<R,T1>DSL. insertInto(Table<R> into, Field<T1> field1)Create a new DSL insert statement.static <R extends Record,T1,T2>
@NotNull InsertValuesStep2<R,T1,T2>DSL. insertInto(Table<R> into, Field<T1> field1, Field<T2> field2)Create a new DSL insert statement.static <R extends Record,T1,T2,T3>
@NotNull InsertValuesStep3<R,T1,T2,T3>DSL. insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3)Create a new DSL insert statement.static <R extends Record,T1,T2,T3,T4>
@NotNull InsertValuesStep4<R,T1,T2,T3,T4>DSL. insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4)Create a new DSL insert statement.static <R extends Record,T1,T2,T3,T4,T5>
@NotNull InsertValuesStep5<R,T1,T2,T3,T4,T5>DSL. insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5)Create a new DSL insert statement.static <R extends Record,T1,T2,T3,T4,T5,T6>
@NotNull InsertValuesStep6<R,T1,T2,T3,T4,T5,T6>DSL. insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6)Create a new DSL insert statement.static <R extends Record,T1,T2,T3,T4,T5,T6,T7>
@NotNull InsertValuesStep7<R,T1,T2,T3,T4,T5,T6,T7>DSL. insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7)Create a new DSL insert statement.static <R extends Record,T1,T2,T3,T4,T5,T6,T7,T8>
@NotNull InsertValuesStep8<R,T1,T2,T3,T4,T5,T6,T7,T8>DSL. insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8)Create a new DSL insert statement.static <R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9>
@NotNull InsertValuesStep9<R,T1,T2,T3,T4,T5,T6,T7,T8,T9>DSL. insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9)Create a new DSL insert statement.static <R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10>
@NotNull InsertValuesStep10<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10>DSL. insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10)Create a new DSL insert statement.static <R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>
@NotNull InsertValuesStep11<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>DSL. insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11)Create a new DSL insert statement.static <R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12>
@NotNull InsertValuesStep12<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12>DSL. insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12)Create a new DSL insert statement.static <R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13>
@NotNull InsertValuesStep13<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13>DSL. insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13)Create a new DSL insert statement.static <R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14>
@NotNull InsertValuesStep14<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14>DSL. insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14)Create a new DSL insert statement.static <R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15>
@NotNull InsertValuesStep15<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15>DSL. insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15)Create a new DSL insert statement.static <R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16>
@NotNull InsertValuesStep16<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16>DSL. insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16)Create a new DSL insert statement.static <R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17>
@NotNull InsertValuesStep17<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17>DSL. insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17)Create a new DSL insert statement.static <R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18>
@NotNull InsertValuesStep18<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18>DSL. insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17, Field<T18> field18)Create a new DSL insert statement.static <R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19>
@NotNull InsertValuesStep19<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19>DSL. insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17, Field<T18> field18, Field<T19> field19)Create a new DSL insert statement.static <R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20>
@NotNull InsertValuesStep20<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20>DSL. insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17, Field<T18> field18, Field<T19> field19, Field<T20> field20)Create a new DSL insert statement.static <R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21>
@NotNull InsertValuesStep21<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21>DSL. insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17, Field<T18> field18, Field<T19> field19, Field<T20> field20, Field<T21> field21)Create a new DSL insert statement.static <R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21,T22>
@NotNull InsertValuesStep22<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21,T22>DSL. insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17, Field<T18> field18, Field<T19> field19, Field<T20> field20, Field<T21> field21, Field<T22> field22)Create a new DSL insert statement.<R extends Record>
InsertQuery<R>DefaultDSLContext. insertQuery(Table<R> into)<R extends Record>
LoaderOptionsStep<R>DefaultDSLContext. loadInto(Table<R> table)<R extends Record>
Table<R>DefaultDSLContext. map(Table<R> table)<R extends Record>
MergeUsingStep<R>DefaultDSLContext. mergeInto(Table<R> table)<R extends Record>
MergeKeyStepN<R>DefaultDSLContext. mergeInto(Table<R> table, Collection<? extends Field<?>> fields)<R extends Record>
MergeKeyStepN<R>DefaultDSLContext. mergeInto(Table<R> table, Field<?>... fields)<R extends Record,T1>
MergeKeyStep1<R,T1>DefaultDSLContext. mergeInto(Table<R> table, Field<T1> field1)Deprecated.- [#10045] - 3.14.0 - Use the standard SQL MERGE API instead, viaDefaultDSLContext.mergeInto(Table)<R extends Record,T1,T2>
MergeKeyStep2<R,T1,T2>DefaultDSLContext. mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2)Deprecated.- [#10045] - 3.14.0 - Use the standard SQL MERGE API instead, viaDefaultDSLContext.mergeInto(Table)<R extends Record,T1,T2,T3>
MergeKeyStep3<R,T1,T2,T3>DefaultDSLContext. mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3)Deprecated.- [#10045] - 3.14.0 - Use the standard SQL MERGE API instead, viaDefaultDSLContext.mergeInto(Table)<R extends Record,T1,T2,T3,T4>
MergeKeyStep4<R,T1,T2,T3,T4>DefaultDSLContext. mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4)Deprecated.- [#10045] - 3.14.0 - Use the standard SQL MERGE API instead, viaDefaultDSLContext.mergeInto(Table)<R extends Record,T1,T2,T3,T4,T5>
MergeKeyStep5<R,T1,T2,T3,T4,T5>DefaultDSLContext. mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5)Deprecated.- [#10045] - 3.14.0 - Use the standard SQL MERGE API instead, viaDefaultDSLContext.mergeInto(Table)<R extends Record,T1,T2,T3,T4,T5,T6>
MergeKeyStep6<R,T1,T2,T3,T4,T5,T6>DefaultDSLContext. mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6)Deprecated.- [#10045] - 3.14.0 - Use the standard SQL MERGE API instead, viaDefaultDSLContext.mergeInto(Table)<R extends Record,T1,T2,T3,T4,T5,T6,T7>
MergeKeyStep7<R,T1,T2,T3,T4,T5,T6,T7>DefaultDSLContext. mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7)Deprecated.- [#10045] - 3.14.0 - Use the standard SQL MERGE API instead, viaDefaultDSLContext.mergeInto(Table)<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8>
MergeKeyStep8<R,T1,T2,T3,T4,T5,T6,T7,T8>DefaultDSLContext. mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8)Deprecated.- [#10045] - 3.14.0 - Use the standard SQL MERGE API instead, viaDefaultDSLContext.mergeInto(Table)<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9>
MergeKeyStep9<R,T1,T2,T3,T4,T5,T6,T7,T8,T9>DefaultDSLContext. mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9)Deprecated.- [#10045] - 3.14.0 - Use the standard SQL MERGE API instead, viaDefaultDSLContext.mergeInto(Table)<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10>
MergeKeyStep10<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10>DefaultDSLContext. mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10)Deprecated.- [#10045] - 3.14.0 - Use the standard SQL MERGE API instead, viaDefaultDSLContext.mergeInto(Table)<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>
MergeKeyStep11<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>DefaultDSLContext. mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11)Deprecated.- [#10045] - 3.14.0 - Use the standard SQL MERGE API instead, viaDefaultDSLContext.mergeInto(Table)<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12>
MergeKeyStep12<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12>DefaultDSLContext. mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12)Deprecated.- [#10045] - 3.14.0 - Use the standard SQL MERGE API instead, viaDefaultDSLContext.mergeInto(Table)<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13>
MergeKeyStep13<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13>DefaultDSLContext. mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13)Deprecated.- [#10045] - 3.14.0 - Use the standard SQL MERGE API instead, viaDefaultDSLContext.mergeInto(Table)<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14>
MergeKeyStep14<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14>DefaultDSLContext. mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14)Deprecated.- [#10045] - 3.14.0 - Use the standard SQL MERGE API instead, viaDefaultDSLContext.mergeInto(Table)<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15>
MergeKeyStep15<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15>DefaultDSLContext. mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15)Deprecated.- [#10045] - 3.14.0 - Use the standard SQL MERGE API instead, viaDefaultDSLContext.mergeInto(Table)<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16>
MergeKeyStep16<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16>DefaultDSLContext. mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16)Deprecated.- [#10045] - 3.14.0 - Use the standard SQL MERGE API instead, viaDefaultDSLContext.mergeInto(Table)<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17>
MergeKeyStep17<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17>DefaultDSLContext. mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17)Deprecated.- [#10045] - 3.14.0 - Use the standard SQL MERGE API instead, viaDefaultDSLContext.mergeInto(Table)<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18>
MergeKeyStep18<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18>DefaultDSLContext. mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17, Field<T18> field18)Deprecated.- [#10045] - 3.14.0 - Use the standard SQL MERGE API instead, viaDefaultDSLContext.mergeInto(Table)<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19>
MergeKeyStep19<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19>DefaultDSLContext. mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17, Field<T18> field18, Field<T19> field19)Deprecated.- [#10045] - 3.14.0 - Use the standard SQL MERGE API instead, viaDefaultDSLContext.mergeInto(Table)<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20>
MergeKeyStep20<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20>DefaultDSLContext. mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17, Field<T18> field18, Field<T19> field19, Field<T20> field20)Deprecated.- [#10045] - 3.14.0 - Use the standard SQL MERGE API instead, viaDefaultDSLContext.mergeInto(Table)<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21>
MergeKeyStep21<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21>DefaultDSLContext. mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17, Field<T18> field18, Field<T19> field19, Field<T20> field20, Field<T21> field21)Deprecated.- [#10045] - 3.14.0 - Use the standard SQL MERGE API instead, viaDefaultDSLContext.mergeInto(Table)<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21,T22>
MergeKeyStep22<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21,T22>DefaultDSLContext. mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17, Field<T18> field18, Field<T19> field19, Field<T20> field20, Field<T21> field21, Field<T22> field22)Deprecated.- [#10045] - 3.14.0 - Use the standard SQL MERGE API instead, viaDefaultDSLContext.mergeInto(Table)static <R extends Record>
@NotNull MergeUsingStep<R>DSL. mergeInto(Table<R> table)Create a new DSL SQL standard MERGE statement.static <R extends Record>
@NotNull MergeKeyStepN<R>DSL. mergeInto(Table<R> table, Collection<? extends Field<?>> fields)Deprecated.- [#10045] - 3.14.0 - Use the standard SQL MERGE API instead, viaDSL.mergeInto(Table)static <R extends Record>
@NotNull MergeKeyStepN<R>DSL. mergeInto(Table<R> table, Field<?>... fields)Deprecated.- [#10045] - 3.14.0 - Use the standard SQL MERGE API instead, viaDSL.mergeInto(Table)static <R extends Record,T1>
@NotNull MergeKeyStep1<R,T1>DSL. mergeInto(Table<R> table, Field<T1> field1)Deprecated.- [#10045] - 3.14.0 - Use the standard SQL MERGE API instead, viaDSL.mergeInto(Table)static <R extends Record,T1,T2>
@NotNull MergeKeyStep2<R,T1,T2>DSL. mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2)Deprecated.- [#10045] - 3.14.0 - Use the standard SQL MERGE API instead, viaDSL.mergeInto(Table)static <R extends Record,T1,T2,T3>
@NotNull MergeKeyStep3<R,T1,T2,T3>DSL. mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3)Deprecated.- [#10045] - 3.14.0 - Use the standard SQL MERGE API instead, viaDSL.mergeInto(Table)static <R extends Record,T1,T2,T3,T4>
@NotNull MergeKeyStep4<R,T1,T2,T3,T4>DSL. mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4)Deprecated.- [#10045] - 3.14.0 - Use the standard SQL MERGE API instead, viaDSL.mergeInto(Table)static <R extends Record,T1,T2,T3,T4,T5>
@NotNull MergeKeyStep5<R,T1,T2,T3,T4,T5>DSL. mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5)Deprecated.- [#10045] - 3.14.0 - Use the standard SQL MERGE API instead, viaDSL.mergeInto(Table)static <R extends Record,T1,T2,T3,T4,T5,T6>
@NotNull MergeKeyStep6<R,T1,T2,T3,T4,T5,T6>DSL. mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6)Deprecated.- [#10045] - 3.14.0 - Use the standard SQL MERGE API instead, viaDSL.mergeInto(Table)static <R extends Record,T1,T2,T3,T4,T5,T6,T7>
@NotNull MergeKeyStep7<R,T1,T2,T3,T4,T5,T6,T7>DSL. mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7)Deprecated.- [#10045] - 3.14.0 - Use the standard SQL MERGE API instead, viaDSL.mergeInto(Table)static <R extends Record,T1,T2,T3,T4,T5,T6,T7,T8>
@NotNull MergeKeyStep8<R,T1,T2,T3,T4,T5,T6,T7,T8>DSL. mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8)Deprecated.- [#10045] - 3.14.0 - Use the standard SQL MERGE API instead, viaDSL.mergeInto(Table)static <R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9>
@NotNull MergeKeyStep9<R,T1,T2,T3,T4,T5,T6,T7,T8,T9>DSL. mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9)Deprecated.- [#10045] - 3.14.0 - Use the standard SQL MERGE API instead, viaDSL.mergeInto(Table)static <R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10>
@NotNull MergeKeyStep10<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10>DSL. mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10)Deprecated.- [#10045] - 3.14.0 - Use the standard SQL MERGE API instead, viaDSL.mergeInto(Table)static <R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>
@NotNull MergeKeyStep11<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>DSL. mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11)Deprecated.- [#10045] - 3.14.0 - Use the standard SQL MERGE API instead, viaDSL.mergeInto(Table)static <R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12>
@NotNull MergeKeyStep12<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12>DSL. mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12)Deprecated.- [#10045] - 3.14.0 - Use the standard SQL MERGE API instead, viaDSL.mergeInto(Table)static <R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13>
@NotNull MergeKeyStep13<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13>DSL. mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13)Deprecated.- [#10045] - 3.14.0 - Use the standard SQL MERGE API instead, viaDSL.mergeInto(Table)static <R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14>
@NotNull MergeKeyStep14<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14>DSL. mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14)Deprecated.- [#10045] - 3.14.0 - Use the standard SQL MERGE API instead, viaDSL.mergeInto(Table)static <R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15>
@NotNull MergeKeyStep15<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15>DSL. mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15)Deprecated.- [#10045] - 3.14.0 - Use the standard SQL MERGE API instead, viaDSL.mergeInto(Table)static <R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16>
@NotNull MergeKeyStep16<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16>DSL. mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16)Deprecated.- [#10045] - 3.14.0 - Use the standard SQL MERGE API instead, viaDSL.mergeInto(Table)static <R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17>
@NotNull MergeKeyStep17<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17>DSL. mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17)Deprecated.- [#10045] - 3.14.0 - Use the standard SQL MERGE API instead, viaDSL.mergeInto(Table)static <R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18>
@NotNull MergeKeyStep18<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18>DSL. mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17, Field<T18> field18)Deprecated.- [#10045] - 3.14.0 - Use the standard SQL MERGE API instead, viaDSL.mergeInto(Table)static <R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19>
@NotNull MergeKeyStep19<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19>DSL. mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17, Field<T18> field18, Field<T19> field19)Deprecated.- [#10045] - 3.14.0 - Use the standard SQL MERGE API instead, viaDSL.mergeInto(Table)static <R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20>
@NotNull MergeKeyStep20<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20>DSL. mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17, Field<T18> field18, Field<T19> field19, Field<T20> field20)Deprecated.- [#10045] - 3.14.0 - Use the standard SQL MERGE API instead, viaDSL.mergeInto(Table)static <R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21>
@NotNull MergeKeyStep21<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21>DSL. mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17, Field<T18> field18, Field<T19> field19, Field<T20> field20, Field<T21> field21)Deprecated.- [#10045] - 3.14.0 - Use the standard SQL MERGE API instead, viaDSL.mergeInto(Table)static <R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21,T22>
@NotNull MergeKeyStep22<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21,T22>DSL. mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17, Field<T18> field18, Field<T19> field19, Field<T20> field20, Field<T21> field21, Field<T22> field22)Deprecated.- [#10045] - 3.14.0 - Use the standard SQL MERGE API instead, viaDSL.mergeInto(Table)MetaDefaultDSLContext. meta(Table<?>... tables)<R extends Record>
RDefaultDSLContext. newRecord(Table<R> table)<R extends Record>
RDefaultDSLContext. newRecord(Table<R> table, Object source)<R extends Record>
Result<R>DefaultDSLContext. newResult(Table<R> table)static @NotNull Table<Record>DSL. rowsFrom(Table<?>... tables)Create aROWS FROM (tables...)expression.<R extends Record>
SelectWhereStep<R>DefaultDSLContext. selectFrom(Table<R> table)static <R extends Record>
@NotNull SelectWhereStep<R>DSL. selectFrom(Table<R> table)Create a new DSL select statement, projecting the known columns from a table.<R extends Record>
TruncateIdentityStep<R>DefaultDSLContext. truncate(Table<R> table)static <R extends Record>
@NotNull TruncateIdentityStep<R>DSL. truncate(Table<R> table)Create a new DSL truncate statement.<R extends Record>
TruncateIdentityStep<R>DefaultDSLContext. truncateTable(Table<R> table)static <R extends Record>
@NotNull TruncateIdentityStep<R>DSL. truncateTable(Table<R> table)Create a new DSL truncate statement.<R extends Record>
UpdateSetFirstStep<R>DefaultDSLContext. update(Table<R> table)static <R extends Record>
@NotNull UpdateSetFirstStep<R>DSL. update(Table<R> table)Create a new DSL update statement.<R extends Record>
UpdateQuery<R>DefaultDSLContext. updateQuery(Table<R> table)Method parameters in org.jooq.impl with type arguments of type Table Modifier and Type Method Description QueriesDefaultDSLContext. ddl(Collection<? extends Table<?>> tables)QueriesDefaultDSLContext. ddl(Collection<? extends Table<?>> tables, DDLExportConfiguration exportConfiguration)QueriesDefaultDSLContext. ddl(Collection<? extends Table<?>> tables, DDLFlag... flags)Constructors in org.jooq.impl with parameters of type Table Constructor Description CustomRecord(Table<R> table)DAOImpl(Table<R> table, Class<P> type)DAOImpl(Table<R> table, Class<P> type, Configuration configuration)TableImpl(String name, Schema schema, Table<R> aliased)Deprecated.- 3.10 - [#5996] - UseTableImpl(Name, Schema, Table)instead (or re-generated your code).TableImpl(String name, Schema schema, Table<R> aliased, Field<?>[] parameters)Deprecated.- 3.10 - [#5996] - UseTableImpl(Name, Schema, Table, Field[])instead (or re-generated your code).TableImpl(String name, Schema schema, Table<R> aliased, Field<?>[] parameters, String comment)Deprecated.- 3.10 - [#5996] - UseTableImpl(Name, Schema, Table, Field[], String)instead (or re-generated your code).TableImpl(Name name, Schema schema, Table<?> child, ForeignKey<?,R> path, Table<R> aliased, Field<?>[] parameters, Comment comment)TableImpl(Name name, Schema schema, Table<?> child, ForeignKey<?,R> path, Table<R> aliased, Field<?>[] parameters, Comment comment, TableOptions options)TableImpl(Name name, Schema schema, Table<R> aliased)TableImpl(Name name, Schema schema, Table<R> aliased, Field<?>[] parameters)TableImpl(Name name, Schema schema, Table<R> aliased, Field<?>[] parameters, String comment)Deprecated.- 3.11 - [#7027] - UseTableImpl(Name, Schema, Table, Field[], Comment)instead.TableImpl(Name name, Schema schema, Table<R> aliased, Field<?>[] parameters, Comment comment)TableImpl(Name name, Schema schema, Table<R> aliased, Field<?>[] parameters, Comment comment, TableOptions options)TableImpl(Table<?> child, ForeignKey<?,R> path, Table<R> parent)TableMetaProvider(Configuration configuration, Table<?>... tables)TableRecordImpl(Table<R> table)UpdatableRecordImpl(Table<R> table)Constructor parameters in org.jooq.impl with type arguments of type Table Constructor Description TableMetaProvider(Configuration configuration, Collection<? extends Table<?>> tables) -
Uses of Table in org.jooq.util.postgres
Methods in org.jooq.util.postgres that return Table Modifier and Type Method Description static @NotNull Table<Record>PostgresDSL. only(Table<?> table)Get the PostgreSQL-specificONLY [table]clause for use with table inheritance.Methods in org.jooq.util.postgres with parameters of type Table Modifier and Type Method Description static @NotNull Field<Long>PostgresDSL. oid(Table<?> table)Get the PostgreSQL-specific[table].oidcolumn from any table.static @NotNull Table<Record>PostgresDSL. only(Table<?> table)Get the PostgreSQL-specificONLY [table]clause for use with table inheritance.
-