Learn how to create, update, and drop VIEWS in SQL Server (Transact-SQL) with syntax and examples.
A VIEW, in essence, is a virtual table that does not physically exist in SQL Server. Rather, it is created by a query joining one or more tables.
The syntax for the CREATE VIEW statement in SQL Server (Transact-SQL) is:
The name of the schema that will own the view.
The name of the VIEW that you wish to create.
It will encrypt text of the ALTER VIEW statement in sys.syscomments.
It ensures that the underlying table definitions can not be modified so as to affect the VIEW.
It will ensure that SQL Server has metadata about the VIEW.
The columns or calculations that you wish to add to the VIEW.
The tables that define the VIEW. There must be at least one table listed in the FROM clause.
Optional. The conditions that must be met for the records to be displayed in the VIEW.
Let's look at an example of how to use the CREATE VIEW statement in SQL Server (Transact-SQL).
For example:
This SQL Server CREATE VIEW example would create a virtual table based on the result set of the SELECT statement. The view would be called prod_inv.
You can now query the SQL Server VIEW as follows:
You can modify the definition of a VIEW in SQL Server without dropping it by using the ALTER VIEW Statement.
The syntax for the ALTER VIEW statement in SQL Server (Transact-SQL) is:
Here is an example of how you would use the ALTER VIEW Statement in SQL Server (Transact-SQL):
This ALTER VIEW example would update the definition of the VIEW called prod_inv without dropping it in SQL Server. The VIEW must exist for you to be able to execute an ALTER VIEW command.
Once a VIEW has been created in SQL Server, you can drop it with the DROP VIEW Statement.
The syntax for the DROP VIEW statement in SQL Server (Transact-SQL) is:
The name of the view that you wish to drop.
Here is an example of how to use the DROP VIEW Statement in SQL Server (Transact-SQL):
This DROP VIEW example would drop/delete the VIEW called prod_inv in SQL Server (Transact-SQL).