Oracle中在pl/sql developer修改表的2种方法

前端之家收集整理的这篇文章主要介绍了Oracle中在pl/sql developer修改表的2种方法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

一、方式一

select * from student for update

student表需要操作人修改完commit之后才可以做其他的操作,否则该表会被锁住。

二、方式二
select t.*,t.rowid from student t

在pl/sql developer中右击某表,显示的就是该语句,这样做不会将该表锁住。

修改某几个字段也没有问题select num,name,t.rowid from student t。

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

猜你在找的Oracle相关文章