码迷,mamicode.com
首页 > 其他好文 > 详细

4、for update锁表方式详解

时间:2019-08-03 13:00:41      阅读:92      评论:0      收藏:0      [点我收藏+]

标签:upd   bsp   HERE   owa   col   strong   color   指定   for   

1、全表排他锁:

select * from employees for update;

 

2、选定行排他锁:

select * from employees where employees=100 for update;

 

3、两个表链接,只锁一个表的选定行:

select * from employees e,departments d where e.department_id=d.department_id and e.employee_id=100 for update of e.employee_id;

 

4、采用排他锁时选择不等待(这个表被别人占用时立马报错,结束等待):

select * from employees for update nowait;

 

5、采用排他锁时,指定等待多少秒:

单位默认为:秒

select * from employees where employee_id=100 wait 5;

 

4、for update锁表方式详解

标签:upd   bsp   HERE   owa   col   strong   color   指定   for   

原文地址:https://www.cnblogs.com/CL-learning/p/11294405.html

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