Final answer:
The correct SQL statement to change the values in an SQL view is UPDATE. The UPDATE statement is used to modify data in a table or view.
Step-by-step explanation:
The correct SQL statement to change the values in an SQL view is UPDATE. The UPDATE statement is used to modify data in a table or view. It allows you to specify which columns and rows you want to update, and then provides the new values for those columns.
Here is an example of how to use the UPDATE statement to change the values in an SQL view:
UPDATE view_name
SET column_name1 = new_value1, column_name2 = new_value2
WHERE condition;
In this example, view_name is the name of the view, column_name1 and column_name2 are the names of the columns you want to update, new_value1 and new_value2 are the new values you want to set, and condition is the criteria for selecting which rows to update.