Module org.jooq
Package org.jooq

Interface MergeKeyStepN<R extends Record>

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 the Merge's DSL API.

Example:

 DSLContext create = DSL.using(configuration);

 create.mergeInto(table, field1, field2)
       .key(id)
       .values(value1, value2)
       .execute();
 
Author:
Lukas Eder