@Generated(value="This class was generated using jOOQ-tools") public interface MergeKeyStep1<R extends Record,T1> extends MergeValuesStep1<R,T1>
Merge's DSL API.
 
 Example: 
 DSLContext create = DSL.using(configuration);
 create.mergeInto(table, field1)
       .key(id)
       .values(field1)
       .execute();
 
| Modifier and Type | Method and Description | 
|---|---|
MergeValuesStep1<R,T1> | 
key(Collection<? extends Field<?>> keys)
Specify an optional  
KEY clause. | 
MergeValuesStep1<R,T1> | 
key(Field<?>... keys)
Specify an optional  
KEY clause. | 
select, values, values, values@Support(value={CUBRID,DB2,FIREBIRD_3_0,H2,HANA,HSQLDB,ORACLE,POSTGRES_9_5,SQLSERVER,SYBASE}) MergeValuesStep1<R,T1> key(Field<?>... keys)
KEY clause.
 
 Use this optional clause in order to override using the underlying
 PRIMARY KEY.
@Support(value={CUBRID,DB2,FIREBIRD_3_0,H2,HANA,HSQLDB,ORACLE,POSTGRES_9_5,SQLSERVER,SYBASE}) MergeValuesStep1<R,T1> key(Collection<? extends Field<?>> keys)
KEY clause.
 
 Use this optional clause in order to override using the underlying
 PRIMARY KEY.
Copyright © 2016. All Rights Reserved.