What is a View?
A virtual table that does not physically exist
What is the syntax for creating a view?
CREATE VIEW view_name AS
SELECT columns
FROM tables
[WHERE conditions];
What happens when you update the data in a view?
The records in the underlying tables are updated
Does the Oracle View exist if the table is dropped from the database?
Yes, however youll get an error if you try to query the view when the table is dropped
What is the type of trigger that can only be attached to views?
Instead of Triggers
What is an Instead of Trigger
A trigger attached to views that is run instead of the DML statement that caused the trigger to fire