Reputation: 47
I have create a view B, then I want to create another view A based on B. But I fail, can any one help me?
CREATE VIEW A ( aa, ab, ac) AS SELECT B.ba,B.bb,SUM(B.bc) AS bcc FROM B GROUP BY B.ba,B.bb
the error is ora-00955
Upvotes: 2
Views: 2552
Reputation: 17643
However, if you want to overwrite your view, you can use:
CREATE OR REPLACE VIEW ...
Upvotes: 1