PostgreSQL - Views and Materialized Views
Consider the view:
Why would an attempt to update a member's
CREATE VIEW premium_members AS SELECT * FROM members WHERE membership_level = 'premium' WITH CHECK OPTION;Why would an attempt to update a member's
membership_level from 'premium' to 'basic' through this view fail?