PostgreSQL - Views and Materialized Views
A view is created as
CREATE VIEW v AS SELECT id, name FROM users;. Later, the users table drops the name column. What happens when you query the view?