You can create a view with SQL Enterprise Manager or by using the CREATE VIEW statement.
(For details, search for "view" in SQL Enterprise Manager Help.)
Or
For example:
CREATE VIEW titles_view AS SELECT title, type, price, pubdate FROM titles
creates a simple view called titles_view, consisting of the title, type, price, and pubdate columns from the titles table. You'll receive a message stating that the command did not return any data, and it did not return any rows. This is fine. The view has been created.
(For details, see the CREATE VIEW statement in the Microsoft SQL Server Transact-SQL Reference.)
Before you create a view, consider the following guidelines: