通过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
These query results are not updateable.Include the ROWID to get updateable results.
原文地址:http://blog.csdn.net/zl544434558/article/details/43303051