-
- All Known Subinterfaces:
MergeKeyStep1<R,T1>
public interface MergeValuesStep1<R extends Record,T1>
This type is used for the H2-specific variant of theMerge
's DSL API.Example:
using(configuration) .mergeInto(table, field1) .key(id) .values(field1) .execute();
- Author:
- Lukas Eder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Merge<R>
select(Select<? extends Record1<T1>> select)
Use aSELECT
statement as the source of values for theMERGE
statementMerge<R>
values(Collection<?> values)
Specify aVALUES
clauseMerge<R>
values(Field<T1> value1)
Specify aVALUES
clauseMerge<R>
values(T1 value1)
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)
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)
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 Record1<T1>> 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)
-
-