Hello guys I have a question on some how to update some data within a view.
I have updated the data from the table by the insert into the table command, but I was wondering if its possible to update the data using the view.
Thanks :)
Hello guys I have a question on some how to update some data within a view.
I have updated the data from the table by the insert into the table command, but I was wondering if its possible to update the data using the view.
Thanks :)
you can update data in a view, but there are very specific rules (see oracle doc)
https://docs.oracle.com/cd/E17952_01/refman-5.1-en/view-updatability.html
as another person has commented, if you update the underlying data the view should reflect the change (assuming you have committed the change). So if this is not happening, you are more likely to be using a materialised view.