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

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

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

 

解决办法:

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

2.select * from ar_workstatus_feild_coffing for update

修改后别忘了提交一下!

commit 或者 如下图

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


注释:

其实,选中一个表后,右键,如果选择“query data”,则在跳出的SQL window上显示的SQL语句是select * from table_name;如果选择“edit data”,则在跳出的SQL window上显示的SQL语句是select *,rowid    from table_name或者是select * from table_name for update(具体因pl/sql developer版本不同而选择两种SQL语句中的一句)。在选择“query data”时跳出的SQL window上点击这个编辑锁按钮,则会跳出上述对话框;在选择“edit data”时跳出的SQL window上点击这个编辑锁按钮,则不会跳出上述对话框。简而言之,query data对应的SQL语句是select * from table_name;edit data对应的SQL语句是select *,rowid    from table_name或者是select * from table_name for update


参考:

these query results are not updateable rowid   百度

these query results are not updateable


你可以选择在查询语句的最后加上 for update,就可以打开编辑锁,直接修改数据。

而在默认查询下,点击Edit data,会报错:The query results are not updateable.

SQL代码示例
select * from table_name for update; (table_name为要编辑的表) 




使用SQLplus编辑表时碰到了一个这个提示“these query results are not updateable. include the rowid ”


弹出框these query results are not updateable. include the rowid or use a select ...
selecet .. for update to get updateable results.

快点啊



select * from chenxxlevel where usercode = '0000000001' for update;--若这条语句不能修改的话,要加RowID。

而如下这条sql:(注释:缺了语句了)后面加for update即可。


参考:

this query results are not updateable   百度

  • 8
    点赞
  • 16
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值