SQL - Views
Given the table
Which of the following statements is true when trying to update
products(id, name, price) and the view:CREATE VIEW v_expensive AS SELECT id, name FROM products WHERE price > 100;
Which of the following statements is true when trying to update
v_expensive?