COMMIT or END commits all operations of a transaction.
Only the transaction creators or system administrators can run the COMMIT command. The creation and commit operations must be in different sessions.
1 | { COMMIT | END } [ WORK | TRANSACTION ] ; |
Commits the current transaction and makes all changes made by the transaction become visible to others.
Optional keyword has no effect except increasing readability.
Commit the transaction to make all changes permanent.
1 | COMMIT; |