BEGIN, COMMIT, ROLLBACK
A transaction can only be used on insert, nor update or delete. You can check the state of this transaction by
- Begin a transaction without a label, then commit it
- Begin a transaction without a label, then abort it
All the data in the sql between and rollback
will be aborted, nothing will be inserted into the table.
BEGIN, COMMIT, ROLLBACK