Specifies the column to select.
See: | column-modifier |
SELECT Clause |
is one of the following:
is the name of a column.
is the name of a column in the table table-name.
is the name of a column in the table that is referenced by table-alias.
is the name of a column in the view view-name.
is the name of a column in the view that is referenced by view-alias.
SALARY /* name of the column */ EMP.SALARY /* EMP is the table or view name */ E.SALARY /* E is an alias for the table or view that contains the SALARY column */