在PL/SQL DEV里面有把锁一样的按钮,点击它为什么会跳出“these query result are not updateable,include the ROWID to get updateable results” 第一种解决方法: 锁上编辑锁,加上查询他的ROWID就可以打开修改锁修改数据了 例: select t.*,t.rowid from scott.emp t 第二种解决方法: 也可以 select t.* from scott.emp t for update 二种方式