Entering content frame

This graphic is explained in the accompanying text Column References Locate the document in its SAP Library structure

A column reference represents the value of a column in a table. It may be either a column name or a column name qualified with a table name. If no table name is specified, the table to which the column belongs is implicit. In this case, the column name must be uniquely be determinable in the most local scope.

Syntax

This graphic is explained in the accompanying text

<column reference> ::=
                  <column name>
                  | <table name> '.' <column name>.

<column name>
::= <identifier>.

<table name> ::= <identifier>.

Example

This graphic is explained in the accompanying text

SELECT employee_name, epmloyees.epmloyee_id
               FROM employees

Column References. Here employee_nameis a column name and epmloyees.epmloyee_idis a qualified column name.

See

Identifiers

Leaving content frame