PostgreSQL - Views and Materialized Views
Given a view
active_customers defined as SELECT id, name FROM customers WHERE active = true, what will the query SELECT * FROM active_customers WHERE name LIKE 'A%'; return?