1. Does a standard view store duplicate copy of data on disk?
- Yes, it creates a physical copy of the table.
- No, it is a saved SELECT query that is executed dynamically when queried.
- Only if the view contains aggregate functions.
- It depends on database size.
Hint: Standard views are virtual. They store only the SQL query definition, not the raw data.