SQL - Transactions and Data Integrity
What is the result of this SQL sequence?
BEGIN TRANSACTION; INSERT INTO orders (id, amount) VALUES (1, 100); ROLLBACK; SELECT * FROM orders WHERE id = 1;
