PostgreSQL - Views and Materialized Views
Given the table
What happens if you try to insert
employees(id, name, salary) and the view:CREATE VIEW high_salary AS SELECT * FROM employees WHERE salary > 5000 WITH CHECK OPTION;What happens if you try to insert
(10, 'Anna', 4000) into high_salary?