Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> Update view
When I try to update a view, I get an error:
CREATE TABLE t1
(
c1 NUMBER, c2 NUMBER
CREATE TABLE t2
(
c1 NUMBER, c2 NUMBER
create view tt as
select t1.c1, t1.c2, t2.c2 "c4"
from t1, t2
where t1.c1 = t2.c1
update tt
set c4 = c2
and I get " ORA-00904: invalid column name "
Please tell me why? Received on Fri Mar 31 2000 - 00:51:12 CST
![]() |
![]() |