@Generated(value="This class was generated using jOOQ-tools") public interface MergeKeyStep18<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18> extends MergeValuesStep18<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18>
Merge's DSL API.
 
 Example: 
 DSLContext create = DSL.using(configuration);
 create.mergeInto(table, field1, field2, field3, .., field17, field18)
       .key(id)
       .values(value1, value2, value3, .., value17, value18)
       .execute();
 
| Modifier and Type | Method and Description | 
|---|---|
| MergeValuesStep18<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18> | key(java.util.Collection<? extends Field<?>> keys)Specify an optional  KEYclause. | 
| MergeValuesStep18<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18> | key(Field<?>... keys)Specify an optional  KEYclause. | 
select, values, values, values@Support(value={CUBRID,DB2,H2,HSQLDB,ORACLE,SQLSERVER,SYBASE}) MergeValuesStep18<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18> key(Field<?>... keys)
KEY clause.
 
 Use this optional clause in order to override using the underlying
 PRIMARY KEY.
@Support(value={CUBRID,DB2,H2,HSQLDB,ORACLE,SQLSERVER,SYBASE}) MergeValuesStep18<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18> key(java.util.Collection<? extends Field<?>> keys)
KEY clause.
 
 Use this optional clause in order to override using the underlying
 PRIMARY KEY.
Copyright © 2015. All Rights Reserved.