these query results are not updateable

               

在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   百度

           

再分享一下我老师大神的人工智能教程吧。零基础!通俗易懂!风趣幽默!还带黄段子!希望你也加入到我们人工智能的队伍中来!https://blog.csdn.net/jiangjunshow

猜你喜欢

转载自blog.csdn.net/gddghg/article/details/87868945
今日推荐