1. 首页
  2. 数据库
  3. 其它
  4. Oracle中在pl/sql developer修改表的2种方法

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

上传者: 2021-01-31 03:05:44上传 PDF文件 34.12KB 热度 7次
一、方式一 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 sqlplus 常用命令大全plsql连接oracle数据库报ora 12
下载地址
用户评论