Skip to main content

ROLLBACK

Roll back the current transaction, discarding all changes since BEGIN.

Syntax

ABORT is an alias for ROLLBACK.

Examples

BEGIN;
DELETE FROM articles WHERE views < 100;
-- Undo the delete
ROLLBACK;

See also

This page contains: