博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
显式锁select for update 用法
阅读量:5275 次
发布时间:2019-06-14

本文共 744 字,大约阅读时间需要 2 分钟。

两个事务操作:

set autocommit=off;

A:

begin;

select * from students where id=1 for update;

B:

begin;

select * from students where id=1;

显示结果(直接查询,无需获得锁)

select * from students;  

显示结果

select * from students where id=2 for update ;

显示结果

select * from students where id=1 for update;

等待(事务A提交后才会获得该行行锁)


 

案例:

转账操作中需要判断余额是否足够

begin;

select balance from account where id=1;  ①

(对余额进行判断,余额不做的不更新操作)

update account set balance=balance-100 where id=1; ②

update account set balance=balance+100 where id=2; 

commit;

多线程下,会有多个事务并发访问数据库。

假设余额150,事务a可以执行到①判断余额充足,切换线程执行事务b到①并判断余额充足,最后都提交后,id为1的账户余额为-50;所以必须让整个事务操作保持原子性。

修改①为:select balance from account where id=1 for update;对该记录加行锁。当事务a执行完提交释放行锁时事务b才能获得行锁 再查询判断。

 

转载于:https://www.cnblogs.com/mryangbo/p/10805121.html

你可能感兴趣的文章
51nod1076 (边双连通)
查看>>
Linux pipe函数
查看>>
java equals 小记
查看>>
2019春 软件工程实践 助教总结
查看>>
Zerver是一个C#开发的Nginx+PHP+Mysql+memcached+redis绿色集成开发环境
查看>>
程序的静态链接,动态链接和装载 (补充)
查看>>
关于本博客说明
查看>>
[Kaggle] Sentiment Analysis on Movie Reviews
查看>>
价值观
查看>>
mongodb命令----批量更改文档字段名
查看>>
国外常见互联网盈利创新模式
查看>>
android:scaleType属性
查看>>
shell脚本
查看>>
Upload Image to .NET Core 2.1 API
查看>>
【雷电】源代码分析(二)-- 进入游戏攻击
查看>>
Linux中防火墙centos
查看>>
如何设置映射网络驱动器的具体步骤和方法
查看>>
centos下同时启动多个tomcat
查看>>
Leetcode Balanced Binary Tree
查看>>
[JS]递归对象或数组
查看>>