Join ExamsbookAnswer :
State the difference between View and Materialized View ?5
Q: State the difference between View and Materialized View ?
- Show AnswerHide Answer
- Workspace
Answer :
Explanation :
The main differenc between View and Materialized View states that - 1. View means it stores the SQL statement in the database and let you use it as a table. Everytime you access the view, the SQL statement executes. 2. Materialized view means it stores the results of the SQL in table form in the database. SQL statement only executes once and after that everytime you run the query, the stored result set is used. Advantage include quick query results.