SQL - Transactions and Data Integrity
Find the problem in this transaction:
BEGIN TRANSACTION; DELETE FROM users WHERE id = 5; UPDATE users SET name = 'John' WHERE id = 6;
