通过select语句想要在plsql里面修改数据,但是点击锁图标后碰到了问题,如图

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

 

解决办法:

1.select t.*, t.rowid from ar_workstatus_feild_coffing t

2.select * from ar_workstatus_feild_coffing for update

修改后别忘了提交一下!

commit 或者 如下图

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

这样才能在下次查询数据库时查到修改后的值。

相关文章:

  • 2021-05-23
  • 2021-10-21
  • 2022-12-23
  • 2021-12-24
  • 2022-01-27
  • 2022-12-23
猜你喜欢
  • 2021-11-12
  • 2022-12-23
  • 2021-07-24
  • 2022-12-23
  • 2021-09-25
  • 2021-11-23
  • 2022-02-01
相关资源
相似解决方案