SQL - Transactions and Data Integrity
Given the commands:
What will the SELECT query show?
BEGIN TRANSACTION;
UPDATE products SET price = price * 1.1 WHERE category = 'Books';
COMMIT;
SELECT price FROM products WHERE category = 'Books';
What will the SELECT query show?
