128k views
2 votes
If the values in an SQL view are changeable through the view itself, the SQL command UPDATE is used to change the values.True or False?

User TimFoolery
by
7.6k points

1 Answer

0 votes

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.

User Handrenliang
by
6.6k points