Transaction
Applies to: sql
A transaction groups database operations so they commit together or roll back together.
BEGIN;
UPDATE accounts SET balance = balance - 10;
COMMIT;
See also: acid
Applies to: sql
A transaction groups database operations so they commit together or roll back together.
BEGIN;
UPDATE accounts SET balance = balance - 10;
COMMIT;
See also: acid