事务回滚没起作用
create table t(id int auto_increment not null ,primary key (id)); select * from t insert into t VALUE(),(); begin; insert into t values(); rollback; 创建表,插入1,2 ,查询t表,开启事务,插入3,事务回滚,插入4,查询,数据变成了,1,2,3,4了。为什么?
create table t(id int auto_increment not null ,primary key (id)); select * from t insert into t VALUE(),(); begin; insert into t values(); rollback; 创建表,插入1,2 ,查询t表,开启事务,插入3,事务回滚,插入4,查询,数据变成了,1,2,3,4了。为什么?
2019-09-20
举报