SQL - Transactions and Data Integrity
Given the SQL commands:
What will the SELECT query return?
BEGIN TRANSACTION;
DELETE FROM customers WHERE id = 3;
ROLLBACK;
SELECT * FROM customers WHERE id = 3;
What will the SELECT query return?
