ReferenceSQL ReferenceROLLBACKEdit this pageOn this pageROLLBACK 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 deleteROLLBACK; See also BEGIN COMMIT