for update 和 for update of 有什么区别

1

select * from TTable1 for update

锁定表的所有行,只能读不能写

2

select * from TTable1 where pkid = 1 for update

只锁定pkid=1的行

3

select  * from Table1 a join Table2 b on a.pkid=b.pkid for update

锁定两个表的所有记录
这个有语句是锁定俩表的符合id匹配条件的所有记录,而不是锁定俩表的所有记录.予以更正
 
(这个有语句是锁定俩表的符合id匹配条件的所有记录,而不是锁定俩表的所有记录.予以更正)

4

select  * from Table1 a join Table2 b on a.pkid=b.pkid  where  a.pkid = 10 for update

锁定两个表的中满足条件的行

5.

select  * from Table1 a join Table2 b on a.pkid=b.pkid  where  a.pkid = 10 for update of a.pkid

只锁定Table1中满足条件的行
 
备注:
for update of 说得不对,根据 oracle文档,它是用来锁字段的。

http://download.oracle.com/docs/cd/E11882_01/appdev.112/e10826/pco03dbc.htm#i4233

Restrictions

You cannot use FOR UPDATE with multiple tables, but you must use FOR UPDATE OF to identify a column in the table that you want locked.Row locks obtained by a FOR UPDATE statement are cleared by a COMMIT, which explains why the cursor is closed for you. If you try to fetch from a FOR UPDATE cursor after a commit, Oracle generates a Fetch out of Sequence error.
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值