1、 PL/SQL developer编辑器中,可以使用select * from table for update 对查询出的结果进行编辑,
2、使用toad却不行,经查资料需使用如:edit table(table是你想要查询修改的表) 查询出结果进行编辑提交,edit table where ...... 后面可以加条件查询
3、或者使用:select rowid,e.* from table e 进行查询 结果也可以编辑
4、对于for update 资源锁定之后,其它地方需要再使用,得提交或回滚才能使用。