首頁  >  文章  >  資料庫  >  Oracle中在pl/sql developer修改表的2种方法

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

WBOY
WBOY原創
2016-06-07 17:56:041198瀏覽

Oracle中在pl/sql developer修改表的2种方法,需要的朋友可以参考一下

一、方式一

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。

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn