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

软件发布|下载排行|最新软件

当前位置:首页IT学院IT技术

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

  2020-12-17 我要评论
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。

Copyright 2022 版权所有 软件发布 访问手机版

声明:所有软件和文章来自软件开发商或者作者 如有异议 请与本站联系 联系我们