for update 和 t.rowid的区别

Posted panzer

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了for update 和 t.rowid的区别相关的知识,希望对你有一定的参考价值。

 

select * from table_name for update; select t.*, t.rowid from table_name t 的区别

前者会对你查询出来的结果加上锁,而后者就没有这样的机制;

 

以上是关于for update 和 t.rowid的区别的主要内容,如果未能解决你的问题,请参考以下文章

oracle for update和for update nowait的区别

for update 和 for update nowait 的区别

JAVAFOR UPDATE 和 FOR UPDATE NOWAIT 区别 (转)

For update 与 For update nowait 的区别

select * from salgrade for update和select * from salgrade for update nowait区别

ORACLE FOR UPDATE与FOR UPDATE OF区别