通过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 百度
你可以选择在查询语句的最后加上 for update,就可以打开编辑锁,直接修改数据。
而在默认查询下,点击Edit data,会报错:The query results are not updateable.
弹出框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