If you execute the following, what does your RDBMS do?
CREATE TABLE t1 (a int);
START TRANSACTION;
INSERT INTO t1 (a) VALUES (1);
START TRANSACTION;
INSERT INTO t1 (a) VALUES (2);
ROLLBACK;
SELECT * FROM t1;
The answer may surprise you.
PlanetMySQL Voting:
Vote UP /
Vote DOWN