The
SELECTstatement cannot contain a subquery in theFROMclause.
If you modify a view that contains such a subquery, why is the modifcation of the base relation on which it depends ambiguous?
EDIT: I've come closer to finding a solution. If you have a table that contains, student ID's and names, and you want to create a view that contains all non-unique names, as in:
create view NonUnique as
select * from Student S1
where exists (select * from Student S2
where S1.sID <> S2.sID
and S2.name = S1.name)
then delete from NonUnique is specifying an ambiguous modifcation to the Student table, because you could clear out the view by deleting all students, or just a handful of students such that only uniquely named students remain.
Are there any other examples of ambiguous modifications we could make to a view that contains a subquery?