Previous Page | Next Page

SAS Views

PROC SQL Views

A PROC SQL view is a PROC SQL query-expression that is given a name and stored for later use. When you use a PROC SQL view in a SAS program, the view derives its data from the data sets (often referred to as tables) or SAS views listed in its FROM clause. The data that is accessed by the view is a subset or superset of the data in its underlying data sets or SAS viewspper.

A PROC SQL view can read or write data from:

For complete documentation on how to create and use PROC SQL views, see Base SAS Procedures Guide.

For information on using PROC SQL views created in an earlier release, see SAS 9.2 Compatibility with SAS Files from Earlier Releases.

Previous Page | Next Page | Top of Page