+ 1
Why View don't need space to store in a database?
3 Réponses
+ 4
A view is created based on sql queries, meaning that each time you want to open a view, the data is fetched using the queries. So, basically, the data is in the underlying tables, which are used to generate the view.
+ 1
data of view is stored in ram, you can say that a select statement is view in itself
0
views a stored on one of the system databases, not the database we're working with.