事务_基本演示和事务_默认自动提交&手动提交和事务的四大特征

事务的基本介绍
概念:
如果一个包含多个步骤的业务操作,被事务管理,那么这些操作要么同时成功,要么同时失败
image
操作:
开启事务:start transaction;
回滚:rollback;
提交:commit

create table account(
id int primary key auto_increment,
name varchar(10),
balance double
);

insert into account(name,balance) values("张三",1000),("李四",1000);

select * from account;

update account set balance = 1000;

-- 开启事务
start transaction;

-- 张三给李四转账500块
-- 1.张三账户 - 500
update account set balance = balance - 500 where name = "张三";

-- 2.李四账户 + 500
update account set balance = balance + 500 where name = "李四";

-- 事务提交 发现没有问题提交事务
commit;
-- 事务回滚  发现出现问题 回滚事务
ROLLBACK;

事务_默认自动提交&手动提交

视图提交的两种方法:
自动提交:
mysql就是自动提交的
一条DML(增删改)语句会自动提交一次事务.
手动提交:
需要先开启事务,在提交

修改事务额默认提交方式:
查看事务的默认提交方式:select @@autocommit; --1代表自动提交 0代表手动提交
修改默认提交的方式:set @@autocommit = 0;
image

select @@autocommit;

set @@autocommit = 0;

select * from account;
update account set balance = balance - 500 where name = "张三";
update account set balance = balance + 500 where name = "李四";

commit;
set @@autocommit = 1;

事务的四大特征:

1.原子性:是不可分割的最小操作单位,要么同时成功,要么同时失败。
2.持久性:当事务提交或回滚后,数据库会持久化的保存数据。
3.隔离性:多个事务之间。相互独立。
4.一致性:事务操作前后,数据总量不变。

posted @ 2022-07-27 13:24  我滴妈老弟  阅读(225)  评论(0编辑  收藏  举报