是一组操作的集合,是一个不可分割的工作单位,事物会把所有的操作作为一个整体一起向系统提交或撤销操作请求,这些操作要么同时成功,要么同时失败
create table account(
id int auto_increment primary key comment '主键ID',
name varchar(10) comment '姓名',
money int comment '余额'
) comment '账户表';
insert into account values (null,'张三',2000),(null,'李四',2000);
-- 恢复数据
update account set money = 2000 where name = '张三' or name = '李四';
select @@autocommit;
set @@autocommit = 1; -- 设置为手动提交
-- 转账操作(张三给李四转账1000)
-- 1.查询张三账户的余额
select * from account where name = '张三';
-- 2.将张三账户余额-1000
update account set money = money - 1000 where name = '张三';
-- 3.将李四账户余额+1000
update account set money = money + 1000 where name = '李四';
-- 提交事物
commit ;
-- 回滚事物
rollback ;
-- 方式二
-- 转账操作(张三给李四转账1000)
start transaction ;
-- 1.查询张三账户的余额
select * from account where name = '张三';
-- 2.将张三账户余额-1000
update account set money = money - 1000 where name = '张三';
程序执行报错...
-- 3.将李四账户余额+1000
update account set money = money + 1000 where name = '李四';
-- 提交事物
commit ;
-- 回滚事物
rollback ;