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

2022-01-08,,

一、方式一


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。

您可能感兴趣的文章:

  • PL/SQL Developer过期的两种解决方法
  • 详解PL/SQL Developer连接本地Oracle 11g 64位数据库
  • 使用PL/SQL Developer连接Oracle数据库的方法图解
  • 解析PL/SQL Developer导入导出数据库的方法以及说明
  • PL/SQL DEVELOPER 使用的一些技巧
  • 解决pl/sql developer中数据库插入数据乱码问题(SSM项目开发)

《Oracle中在pl/sql developer修改表的2种方法.doc》

下载本文的Word格式文档,以方便收藏与打印。