Module org.jooq
Package org.jooq

Interface MergeValuesStepN<R extends Record>

  • All Known Subinterfaces:
    MergeKeyStepN<R>, MergeUsingStep<R>

    public interface MergeValuesStepN<R extends Record>
    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