COMMIT¶
Commits an open transaction in the current session.
- See also:
Syntax¶
Parameters¶
WORKOptional keyword that provides compatibility with other database systems.
Usage notes¶
If two COMMIT statements in a row are executed (within the same scope), the second one is ignored. For example, in the following code, the second COMMIT has no effect; there is no open transaction to commit.
The rules can be more complex if you are using autonomous scoped transactions and stored procedures.
Examples¶
Begin a transaction, insert some values into a table, then complete the transaction by committing it: