一、方式一
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位數(shù)據(jù)庫
- 使用PL/SQL Developer連接Oracle數(shù)據(jù)庫的方法圖解
- 解析PL/SQL Developer導入導出數(shù)據(jù)庫的方法以及說明
- PL/SQL DEVELOPER 使用的一些技巧
- 解決pl/sql developer中數(shù)據(jù)庫插入數(shù)據(jù)亂碼問題(SSM項目開發(fā))