方法1:
复制代码 代码示例:
select * from student for update
student表需要操作人修改完commit之后才可以做其他的操作,否则该表会被锁住。
方法2:
复制代码 代码示例:
select t.*,t.rowid from student t
在pl/sql developer中右击某表,显示的就是该语句,这样做不会将该表锁住。
如果需要修改某几个字段:
复制代码 代码示例:
select num,name,t.rowid from student t。