MergeTableStatement
Represents an SQL MERGE statement. It encapsulates the logic to perform conditional updates, insertions, or deletions.
Here is only the part specific for the Table as a source implementation. Look into MergeStatement to find the base implementation of that command.
Parameters
The destination Table where records will be merged into.
Properties
Functions
Returns the string representation of an SQL statement.
Specifies a delete operation to be executed when a matching record is found in the destination table.
Postgres only. Specifies that no operation should be performed when a matching record is found in the destination table.
Defines an update operation to be executed when a matching record is found in the destination table.
Postgres only. Specifies that no operation should be performed when no matching record is found in the destination table.
Defines an insert operation to be performed when there is no matching record in the destination table.