Definition. A view in SQL Server is a virtual table that is derived from the result of a query. It consists of a stored SELECT statement that retrieves data from one or more tables or views. The retrieved data is stored in the view, and the view can be queried and manipulated like a regular table.
Views are used for several purposes:
Example.
Select ProductName, UnitPrice, CategoryName
From Products Inner Join Categories
on Products.CategoryID = Categories.CategoryIDWe will create a view for the above query:
Create View GetProducts.vw
As
Select ProductName, UnitPrice, CategoryName
From Products Inner Join Categories
on Products.CategoryID = Categories.CategoryIDSo we are done.
This note will be further developed (Index concept, Stored Procedure, Trigger etc.).
2023-maxBound Anıl Demirel