PostgreSQL - Views and Materialized Views
Given a materialized view
Assuming the materialized view is refreshed and contains data for that date.
mv_orders with an index on order_date, what will be the output of this query?SELECT order_date FROM mv_orders WHERE order_date = '2023-01-01';Assuming the materialized view is refreshed and contains data for that date.
