Specifies source tables or views.
See: | Creating a Table and Inserting Data into It |
Joining Two Tables | |
Joining Three Tables | |
Querying an In-Line View |
specifies a temporary, alternate name for a table, view, or in-line view that is specified in the FROM clause.
names the column that appears in the output. The column names that you specify are matched by position to the columns in the output.
is one of the following:
names a single PROC SQL table. table-name can be a one-level name, a two-level libref.table name, or a physical pathname that is enclosed in single quotation marks.
names a single SAS view. view-name can be a one-level name, a two-level libref.view name, or a physical pathname that is enclosed in single quotation marks.
specifies a join. See joined-table.
specifies an in-line view. See query-expression.
specifies a DBMS table. See CONNECTION TO.