Oracle:for update 和select t.*,t.rowid编辑数据的区别

前端之家收集整理的这篇文章主要介绍了Oracle:for update 和select t.*,t.rowid编辑数据的区别前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
1. select * from ls.lims_employees where empno='0001' for update

只有当前用户能查看SELECT记录,其他用户可以select * from ls.lims_employees where empno='0001' 查询,但要加for update则必须等待前一个用户提交才能查。是加锁查下


通过查询可以查询到锁
select b.owner,b.object_name,a.session_id,a.locked_mode from v$locked_object a,dba_objects b where b.object_id = a.object_id;


2、select t.*,t.rowid table 是不加锁查询。不会锁表

原文链接:https://www.f2er.com/oracle/208624.html

猜你在找的Oracle相关文章