-
- All Known Subinterfaces:
MergeKeyStep2<R,T1,T2>
public interface MergeValuesStep2<R extends Record,T1,T2>This type is used for the H2-specific variant of theMerge's DSL API.Example:
using(configuration) .mergeInto(table, field1, field2) .key(id) .values(field1, field2) .execute();- Author:
- Lukas Eder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Merge<R>select(Select<? extends Record2<T1,T2>> select)Use aSELECTstatement as the source of values for theMERGEstatementMerge<R>values(Collection<?> values)Specify aVALUESclauseMerge<R>values(Field<T1> value1, Field<T2> value2)Specify aVALUESclauseMerge<R>values(T1 value1, T2 value2)Specify aVALUESclause
-
-
-
Method Detail
-
values
@Support({AURORA_MYSQL,AURORA_POSTGRES,CUBRID,DB2,DERBY,FIREBIRD_3_0,H2,HANA,HSQLDB,MARIADB,MEMSQL,MYSQL,ORACLE,POSTGRES_9_5,SQLSERVER,SYBASE,TERADATA,VERTICA}) Merge<R> values(T1 value1, T2 value2)
Specify aVALUESclause
-
values
@Support({AURORA_MYSQL,AURORA_POSTGRES,CUBRID,DB2,DERBY,FIREBIRD_3_0,H2,HANA,HSQLDB,MARIADB,MEMSQL,MYSQL,ORACLE,POSTGRES_9_5,SQLSERVER,SYBASE,TERADATA,VERTICA}) Merge<R> values(Field<T1> value1, Field<T2> value2)
Specify aVALUESclause
-
values
@Support({AURORA_MYSQL,AURORA_POSTGRES,CUBRID,DB2,DERBY,FIREBIRD_3_0,H2,HANA,HSQLDB,MARIADB,MEMSQL,MYSQL,ORACLE,POSTGRES_9_5,SQLSERVER,SYBASE,TERADATA,VERTICA}) Merge<R> values(Collection<?> values)
Specify aVALUESclause
-
select
@Support({CUBRID,DB2,FIREBIRD_3_0,H2,HANA,HSQLDB,ORACLE,SQLSERVER,SYBASE,TERADATA,VERTICA}) Merge<R> select(Select<? extends Record2<T1,T2>> select)
Use aSELECTstatement as the source of values for theMERGEstatementThis variant of the
MERGE .. SELECTstatement expects a select returning exactly as many fields as specified previously in theINTOclause:DSLContext.mergeInto(Table, Field, Field)
-
-