- 最后登录
- 2015-5-16
- 在线时间
- 3 小时
- 威望
- 0
- 金钱
- 31
- 注册时间
- 2014-9-14
- 阅读权限
- 10
- 帖子
- 5
- 精华
- 0
- 积分
- 0
- UID
- 2032
|
2#
发表于 2015-4-18 20:45:45
Error: ORA 1732
Text: data manipulation operation not legal on this view
-------------------------------------------------------------------------------
Cause: An attempt was made to use an UPDATE, INSERT, or DELETE statement on a
view that contains expressions or functions or was derived from more
than one table.
If a join operation was used to create the view or the view contains
virtual columns derived from functions or expressions, then the view
may only be queried.
Action: UPDATE, INSERT, or DELETE rows in the base tables instead and restrict
the operations on the view to queries.
视图的虚拟列不能删除,你要在基表上做删除列的操作。
|
|