mergeFrom
Performs an SQL MERGE operation to insert, update, or delete records in the target table based on a comparison with a source table.
Return
A MergeTableStatement which represents the MERGE operation with the configured actions.
Parameters
An instance of the source table.
A lambda function that should return a Op
A lambda where MergeTableStatement can be configured with specific actions to perform when records are matched or not matched.
Type Parameters
Performs an SQL MERGE operation to insert, update, or delete records in the target table based on a comparison with a source table.
Return
A MergeTableStatement which represents the MERGE operation with the configured actions.
Parameters
An instance of the source table.
A lambda where MergeTableStatement can be configured with specific actions to perform when records are matched or not matched.
Type Parameters
Performs an SQL MERGE operation to insert, update, or delete records in the target table based on a comparison with a select query source.
Return
A MergeSelectStatement which represents the MERGE operation with the configured actions.
Parameters
represents the aliased query for a complex subquery to be used as the source.
A lambda that returns a condition Op
A lambda where MergeSelectStatement can be configured with specific actions to perform when records are matched or not matched.
Type Parameters
The target table type extending from Table.