Oracle中在pl/sql developer修改表的2种方法
时间:2021-01-08 12:20:40|栏目:Oracle|点击: 次
一、方式一
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
下一篇:ORACEL使用脚本来修改表结构
本文标题:Oracle中在pl/sql developer修改表的2种方法
本文地址:http://www.codeinn.net/misctech/42247.html