Complete the code to refresh the materialized view named 'sales_summary'.
REFRESH [1] sales_summary;The correct syntax to refresh a materialized view in PostgreSQL is REFRESH MATERIALIZED VIEW view_name;.
Complete the code to refresh the materialized view 'inventory_status' concurrently.
REFRESH MATERIALIZED VIEW [1] inventory_status;Using CONCURRENTLY allows the materialized view to be refreshed without locking it for selects.
Fix the error in the code to refresh the materialized view 'user_stats' concurrently.
REFRESH MATERIALIZED VIEW [1] user_stats;The correct keyword is CONCURRENTLY. Other options cause syntax errors.
Fill both blanks to refresh the materialized view 'daily_report' without locking reads.
REFRESH [1] [2] daily_report;
The syntax to refresh a materialized view concurrently is REFRESH MATERIALIZED VIEW CONCURRENTLY view_name;.
Fill all three blanks to refresh the materialized view 'monthly_summary' concurrently.
REFRESH [1] [2] [3] monthly_summary;
The full syntax is REFRESH MATERIALIZED VIEW CONCURRENTLY view_name;.