-
- All Known Subinterfaces:
MergeKeyStep3<R,T1,T2,T3>
public interface MergeValuesStep3<R extends Record,T1,T2,T3>
This type is used for the H2-specific variant of theMerge
's DSL API.Example:
using(configuration) .mergeInto(table, field1, field2, field3) .key(id) .values(field1, field2, field3) .execute();
- Author:
- Lukas Eder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Merge<R>
select(Select<? extends Record3<T1,T2,T3>> select)
Use aSELECT
statement as the source of values for theMERGE
statementMerge<R>
values(Collection<?> values)
Specify aVALUES
clauseMerge<R>
values(Field<T1> value1, Field<T2> value2, Field<T3> value3)
Specify aVALUES
clauseMerge<R>
values(T1 value1, T2 value2, T3 value3)
Specify aVALUES
clause
-
-
-
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, T3 value3)
Specify aVALUES
clause
-
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, Field<T3> value3)
Specify aVALUES
clause
-
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 aVALUES
clause
-
select
@Support({CUBRID,DB2,FIREBIRD_3_0,H2,HANA,HSQLDB,ORACLE,SQLSERVER,SYBASE,TERADATA,VERTICA}) Merge<R> select(Select<? extends Record3<T1,T2,T3>> select)
Use aSELECT
statement as the source of values for theMERGE
statementThis variant of the
MERGE .. SELECT
statement expects a select returning exactly as many fields as specified previously in theINTO
clause:DSLContext.mergeInto(Table, Field, Field, Field)
-
-