In this article I will describe what a view is, how it is usefull and how you will generate a view between more than one table.
In SQL Server a view represents a virtual table. You can say it is a subset of a table. Just like a real table, a view consists of rows with columns, and we can retrieve data from a view (sometimes even update data in a view). The fields in the view's virtual table are the fields of one or more real tables in the database.Why View?We need to have a goal in mind when creating a view. There are a number of scenarios where we have to look for a view as a solution.
Basics of SQL Server