码迷,mamicode.com
首页 > 数据库 > 详细

mysql内置函数之事务

时间:2018-03-26 23:37:42      阅读:249      评论:0      收藏:0      [点我收藏+]

标签:markdown   key   0.00   AC   完整   down   update   tab   出现   

事务用于将某些操作的多个SQL作为原子性操作,一旦有某一个出现错误,即可回滚到原来的状态,从而保证数据库数据完整性。

create table user(
id int primary key auto_increment,
name char(32),
balance int
);

insert into user(name,balance)
values
(‘wsb‘,1000),
(‘egon‘,1000),
(‘ysb‘,1000);

#原子操作
start transaction; # 开启事务

update user set balance=900 where name=‘wsb‘; #买支付100元
update user set balance=1010 where name=‘egon‘; #中介拿走10元
update user set balance=1090 where name=‘ysb‘; #卖家拿到90元
commit; # 只要不执行commit都没有完成提交,可以通过rollback回滚

#出现异常,回滚到初始状态
start transaction;
update user set balance=900 where name=‘wsb‘; #买支付100元
update user set balance=1010 where name=‘egon‘; #中介拿走10元
uppdate user set balance=1090 where name=‘ysb‘; #卖家拿到90元,出现异常没有拿到
rollback;
commit;
mysql> select * from user;
+----+------+---------+
| id | name | balance |
+----+------+---------+
|  1 | wsb  |    1000 |
|  2 | egon |    1000 |
|  3 | ysb  |    1000 |
+----+------+---------+
rows in set (0.00 sec)

mysql内置函数之事务

标签:markdown   key   0.00   AC   完整   down   update   tab   出现   

原文地址:https://www.cnblogs.com/Jason-lin/p/8654590.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!