-
- All Superinterfaces:
MergeValuesStepN<R>
- All Known Subinterfaces:
MergeUsingStep<R>
public interface MergeKeyStepN<R extends Record> extends MergeValuesStepN<R>
This type is used for the H2-specific variant of theMerge
's DSL API.Example:
DSLContext create = DSL.using(configuration); create.mergeInto(table, field1, field2) .key(id) .values(value1, value2) .execute();
- Author:
- Lukas Eder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description MergeValuesStepN<R>
key(Collection<? extends Field<?>> keys)
Specify an optionalKEY
clause.MergeValuesStepN<R>
key(Field<?>... keys)
Specify an optionalKEY
clause.-
Methods inherited from interface org.jooq.MergeValuesStepN
select, values, values, values
-
-
-
-
Method Detail
-
key
@Support({AURORA_POSTGRES,CUBRID,DB2,FIREBIRD_3_0,H2,HANA,HSQLDB,ORACLE,POSTGRES_9_5,SQLSERVER,SYBASE,TERADATA,VERTICA}) MergeValuesStepN<R> key(Field<?>... keys)
Specify an optionalKEY
clause.Use this optional clause in order to override using the underlying
PRIMARY KEY
.
-
key
@Support({AURORA_POSTGRES,CUBRID,DB2,FIREBIRD_3_0,H2,HANA,HSQLDB,ORACLE,POSTGRES_9_5,SQLSERVER,SYBASE,TERADATA,VERTICA}) MergeValuesStepN<R> key(Collection<? extends Field<?>> keys)
Specify an optionalKEY
clause.Use this optional clause in order to override using the underlying
PRIMARY KEY
.
-
-