PostgreSQL - Views and Materialized Views
Consider this command:
After creating, you run:
But get an error: "relation \"mv_refresh\" does not exist". What is the likely cause?
CREATE MATERIALIZED VIEW mv_refresh AS SELECT * FROM products;
After creating, you run:
REFRESH MATERIALIZED VIEW mv_refresh;
But get an error: "relation \"mv_refresh\" does not exist". What is the likely cause?
