Views

Learn how to create and use views in T-SQL.

We'll cover the following...

In T-SQL, a SELECT query can be reused multiple times without having to write it down on every occasion. We can save a SELECT query for future use as a view.

Views can be thought of as virtual tables. But unlike tables, when we select from a view, a SELECT query that was saved as the view is executed to retrieve the data dynamically.

Syntax

To create a view, we use the CREATE VIEW command:

CREATE VIEW ViewName
AS
[SELECT query];

We use a view like ...