PostgreSQL - Triggers in PostgreSQL
You have a view
order_summary that combines orders(order_id, customer_id, order_date) and customers(customer_id, customer_name). The view shows order_id, customer_name, order_date. How should an INSTEAD OF trigger handle an INSERT on this view?