Views
A view is a virtual table based on the result set of an SQL statement.
A view is a data object which does not contain any data.
Contents of the view are the result of a base table.
They are operated just like a base table but don’t contain any data.
The difference between a view and a table is that views are definitions built on top of other tables (or views).
If data is changed in the underlying table, the view reflects the exact change.
A view can be built on top of single or multiple tables.
Simple Syntax
Example
View Inside a View
Alter Views
Views can be used in SubQuery, Derived Tables.
Drop Views
Last updated