Oracle中在pl/sql developer修改表的2种方法
Oracle中在pl/sql developer修改表的2种方法
发布时间:2016-12-28 来源:查字典编辑
摘要:一、方式一select*fromstudentforupdatestudent表需要操作人修改完commit之后才可以做其他的操作,否则该表...

一、方式一

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。

推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
相关阅读
网友关注
最新Oracle教程学习
热门Oracle教程学习
编程开发子分类