SQL - Views
You have a view:
You want to allow updates on
CREATE VIEW v_orders AS SELECT order_id, customer_id, order_date FROM orders;
You want to allow updates on
customer_id but prevent updates on order_date. How can you enforce this?