PostgreSQL - Views and Materialized Views
Given a materialized view created as:
What will be the result of:
immediately after creation?
CREATE MATERIALIZED VIEW sales_summary AS SELECT region, SUM(amount) AS total FROM sales GROUP BY region;What will be the result of:
SELECT * FROM sales_summary;immediately after creation?
