SQL - Transactions and Data Integrity
You run these commands with auto-commit OFF:
What is the state of the prices after these commands?
UPDATE products SET price = price * 0.9 WHERE category = 'Books';
COMMIT;
ROLLBACK;What is the state of the prices after these commands?
