WEB开发网
开发学院数据库Oracle Oracle中在pl/sql developer修改表的两种方式 阅读

Oracle中在pl/sql developer修改表的两种方式

 2013-03-04 13:51:08 来源:开发学院   
核心提示: 一、方式一select * from student for updatestudent表需要操作人修改完commit之后才可以做其他的操作,否则该表会被锁住,Oracle中在pl/sql developer修改表的两种方式,二、方式二select t.*,t.rowid from student t在pl/sql

 一、方式一
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。

Tags:Oracle pl sql

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接