Name
ROLLBACK
-- abort the current transaction
Description
ROLLBACK rolls back the current transaction and causes
all the updates made by the transaction to be discarded.
Notes
Use COMMIT
to successfully terminate a transaction.
ABORT is a
synonym for ROLLBACK.
Usage
To abort all changes:
ROLLBACK WORK;
Compatibility
SQL92
SQL92 only specifies the two forms ROLLBACK
and ROLLBACK WORK. Otherwise full compatibility.