Discussed in #204
Originally posted by thadguidry January 27, 2024
Also, good to support:
While access to the data stored in a materialized view is often much faster than accessing the underlying tables directly or through a view, the data is not always current; yet sometimes current data is not needed.
(edited)
Views can also sometimes allow INSERT, DELETE, UPDATE
A view can also have other kinds of DO INSTEAD rules, allowing INSERT, UPDATE, or DELETE commands to be performed on the view despite its lack of underlying storage. This is discussed further below, in Section 41.2.4.
https://www.postgresql.org/docs/16/rules-views.html (edited)
Discussed in #204
Originally posted by thadguidry January 27, 2024
Also, good to support:
Views can also sometimes allow INSERT, DELETE, UPDATE
https://www.postgresql.org/docs/16/rules-views.html (edited)