在PL/SQL DEV里面有把锁一样的按钮,点击它为什么会跳出“these query result are not updateable,include the ROWID to get updat...

第一种解决方法:

锁上编辑锁,加上查询他的ROWID就可以打开修改锁修改数据了
例:
select t.*,t.rowid from scott.emp t

第二种解决方法:

也可以 select t.* from scott.emp t for update 二种方式

转载于:https://www.cnblogs.com/alterhu/archive/2012/03/21/2409312.html

猜你喜欢

转载自blog.csdn.net/weixin_33736832/article/details/94029478