SQL - Transactions and Data Integrity
Consider this sequence with auto-commit OFF:
What will the SELECT query return?
INSERT INTO users (id, name) VALUES (1, 'Alice');
ROLLBACK;
SELECT * FROM users WHERE id = 1;What will the SELECT query return?
