Oracle "for update" 子句

在Oracle中仅仅使用select语句,查询出来的数据是无法更新或修改的,但在select语句最后使用for update子句,则可以对查询出的数据锁定。

我们对for update的使用还是比较普遍的,特别是在如pl/sql developer中,查询并手工修改查询出来的数据,这样操作是很方便的。

如:查询基本信息:

(1)若不使用for update子句,此时点击PL/SQL DEV中的Edit data(打开编辑锁),则弹出错误息“these query result are not updateable,include the ROWID to get updateable results”,表示当前状态是查询状态,不是可更新状态。

select * from member m where m.account = 'xiaoqinghe'

(2)加上for update子句,此时点击PL/SQL DEV中的Edit data可正编辑查询数据,编辑数据后记得提交修改(Post changes和Commit<F10>)。

select * from member m where m.account = 'xiaoqinghe' for update

(3)若不加for update子句,则可以同时查出该记录的rowid,此时点击PL/SQL DEV中的Edit data也可正编辑查询数据。

select m.*,m.rowid from member m where m.account = 'xiaoqinghe'

但其实for update的真正意义并不是用来做这个的。那么,什么时候需要使用for update?就是那些需要业务层面数据独占时,可以考虑使用for update。场景上,比如火车票订票,在屏幕上显示车票,而真正进行出票时,需要重新确定一下这个数据没有被其他客户端修改。所以,在这个确认过程中,可以使用for update


你可能感兴趣的:(oracle,update,for)