Show TOC Start of Content Area

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_name  is a column name and epmloyees.epmloyee_id  is a qualified column name.

More Information

Identifiers

End of Content Area