@Generated(value="This class was generated using jOOQ-tools") public interface MergeValuesStep2<R extends Record,T1,T2>
Merge's DSL API.
 
 Example: 
 using(configuration)
       .mergeInto(table, field1, field2)
       .key(id)
       .values(field1, field2)
       .execute();
 
| Modifier and Type | Method and Description | 
|---|---|
Merge<R> | 
select(Select<? extends Record2<T1,T2>> select)
Use a  
SELECT statement as the source of values for the
 MERGE statement
 
 This variant of the MERGE .. | 
Merge<R> | 
values(Collection<?> values)
Specify a  
VALUES clause | 
Merge<R> | 
values(Field<T1> value1,
      Field<T2> value2)
Specify a  
VALUES clause | 
Merge<R> | 
values(T1 value1,
      T2 value2)
Specify a  
VALUES clause | 
@Support(value={CUBRID,DB2,H2,HSQLDB,ORACLE,SQLSERVER,SYBASE}) Merge<R> values(T1 value1, T2 value2)
VALUES clause@Support(value={CUBRID,DB2,H2,HSQLDB,ORACLE,SQLSERVER,SYBASE}) Merge<R> values(Field<T1> value1, Field<T2> value2)
VALUES clause@Support(value={CUBRID,DB2,H2,HSQLDB,ORACLE,SQLSERVER,SYBASE}) Merge<R> values(Collection<?> values)
VALUES clause@Support(value={CUBRID,DB2,H2,HSQLDB,ORACLE,SQLSERVER,SYBASE}) Merge<R> select(Select<? extends Record2<T1,T2>> select)
SELECT statement as the source of values for the
 MERGE statement
 
 This variant of the MERGE .. SELECT statement expects a
 select returning exactly as many fields as specified previously in the
 INTO clause:
 DSLContext.mergeInto(Table, Field, Field)
Copyright © 2015. All Rights Reserved.