ROLLBACK
Function
Rolls back the current transaction and backs out all updates in the transaction.
ROLLBACK backs out of all changes that a transaction makes to a database if the transaction fails to be executed due to a fault.
Precautions
If a ROLLBACK statement is executed out of a transaction, no error occurs, but a warning information is displayed.
Syntax
ROLLBACK [ WORK | TRANSACTION ];
Parameter Description
WORK | TRANSACTION
Optional keyword that more clearly illustrates the syntax.
Examples
1 2 3 4 5 | -- Start a transaction:
START TRANSACTION;
-- Back out all changes:
ROLLBACK;
|
Helpful Links
Last Article: START TRANSACTION
Next Article: RELEASE SAVEPOINT
Did this article solve your problem?
Thank you for your score!Your feedback would help us improve the website.