These query results are not updateable.Include the ROWID to get updateable results.
时间:2015-01-30 10:50:40
收藏:0
阅读:751
通过plsql来添加新的记录时候,出现如下错误:These query results are not updateable.Include the ROWID to get updateable results. 如截图:
解决办法如下:
第一种解决方案:select* from T_status_set for update
第二种解决方案:select tss.* ,rowid from T_status_set tss
评论(0)