Final answer:
To change values in an SQL view, you need to update the corresponding data in the underlying tables using the SQL command UPDATE.
Step-by-step explanation:
In an SQL view, the data is derived from one or more tables, and it is not directly changeable through the view itself. Changes made to the data in a view are reflected in the underlying tables. If you want to update the values in a view, you need to update the corresponding data in the underlying tables using the SQL command UPDATE. The UPDATE command allows you to modify the values in one or more rows of a table.