首页 > 数据库技术 > 详细

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

时间:2015-10-30 12:19:14      阅读:692      评论:0      收藏:0      [点我收藏+]

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

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

原文:http://www.cnblogs.com/likeju/p/4922760.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!