|
|
SELECT Specification Syntax
The
select-specificationsyntax is:Each clause in the
select-specificationconstruction is described in detail in the following sections.The SELECT Clause
The
SELECTclause defines which values are to be selected. Values are specified by column references or expressions; where columns are addressed, the value selected is the content of the column.SELECT *
This form of the
SELECTclause specifies all columns in the Cartesian product of the tables specified in theFROMclause. The single asterisk may not be combined with any other value specification.Example
SELECT * FROM countries ...Note: Use of SELECT * is discouraged in programs (except in EXISTS predicates) since the asterisk is expanded to a column list when the statement is compiled, and any subsequent alterations in the table or view definitions may cause the program to function incorrectly.
SELECT table.*
If a named table or view (
table-nameorcorrelation-name) is followed by an asterisk in theSELECTclause, all columns are selected from that table or view.This formulation may be used in a list of select specifications.
If a
correlation-nameis used, it must be defined in the associatedFROMclause, see The FROM Clause and Table-reference.Note: Use of SELECT table.* is discouraged in programs (except in EXISTS predicates) since the asterisk is expanded to a column list when the statement is compiled, and any subsequent alterations in the table or view definitions may cause the program to function incorrectly.
SELECT Expression
Values to be selected may be specified as expressions (using column-references, set functions and literals, see Expressions).
Column names used in expressions must refer to columns in the tables addressed in the
FROMclause.A column name must be qualified if more than one column in the set of table references addressed in the
FROMclause has the same name.SELECT ... AS Column-label
A
column-labelmay be added after each separate expression in theSELECTclause.column-labelis an SQL identifier which becomes the name of the column in the result set.If no name is given the original column name is used, unless the new column was created by an expression, in which case the new column has no name.
For example,
SELECT COLUMN_NAMEwould result in a column calledCOLUMN_NAMEin the result set, butSELECT COLUMN_NAME + 1would result in a column in the result set with no name.The Keywords ALL and DISTINCT
If
ALLis specified or if no keyword is given, duplicate rows are not eliminated from the result of theselect-specification.If
DISTINCTis specified, duplicate rows are eliminated.NULLis considered to be equal toNULLin this context.The FROM Clause and Table-reference
The
FROMclause defines an intermediate result set for the select-specification, and may define correlation names for the table references used in the result set.General Syntax
All source tables and views referenced in the
SELECTclause and at the top level in theWHEREclause (but not in any subselect used in theWHEREclause) must be named in theFROMclause.Intermediate Result Sets
If a single table or view is named in the
FROMclause, the intermediate result set is identical to the table or view.If the
FROMclause names more than one table or view, the intermediate result set may be regarded as the complete Cartesian product of the named tables or views.Note: The intermediate result set is a conceptual entity, introduced to aid in understanding of the selection process. The complete result set does not have any direct physical existence, so that the machine resources available do not need to correspond to the (sometimes very large) Cartesian product tables implied by multiple table references in a FROM clause.
Correlation Names
Correlation names introduced in the
FROMclause redefine the form of the table name which may be used to qualify column names, see Qualified Object Names.Correlation names may be used for two purposes:
- to shorten table names, which saves typing and makes statements easier to follow and less error-prone.
- to relate a table to a logical copy of itself.
A table or view name is exposed in the
FROMclause if it does not have a correlation name. The same table or view name cannot be exposed more than once in the sameFROMclause.The same correlation name may not be introduced more than once in the same
FROMclause, and it cannot be the same as an exposed table or view name.The WHERE Clause
The
WHEREclause selects a subset of the rows in the intermediate result set on the basis of values in the columns. If noWHEREclause is specified, all rows of the intermediate result set are selected.All column references in the
search-conditionmust uniquely identify a column in the intermediate result set defined by theFROMclause or be an outer reference.Column references must be qualified if more than one column in the intermediate result set has the same name, or if the column is an outer reference.
The GROUP BY Clause
The
GROUP BYclause determines grouping of the result table for the application of set functions specified in theSELECTclause.The
GROUP BYclause has the following syntax:If a
GROUP BYclause is specified, each column reference in theSELECTlist must either identify a grouping column or be the argument of a set function.The rows of the intermediate result set are (conceptually) arranged in groups, where all values in the grouping column(s) are identical within each group.
Each group is reduced to a single row in the final result of the select-specification.
If a
GROUP BYclause is not specified, theSELECTlist must either be a list that does not include any set functions or a list of set functions and optional literal expressions.The COLLATE Clause
The
COLLATEclause determines the order of the resulting data.If the
COLLATEclause is specified, the resulting data will be grouped according to the collation specified. For more information, see the Mimer SQL User's Manual, Collations.The HAVING Clause
The
HAVINGclause restricts selection of groups in the same way that aWHEREclause restricts selection of rows.The
HAVINGclause has the following syntax:The search condition in the
HAVINGclause defines restrictions on the values in the elements of theSELECTlist. Column references in the search condition of theHAVINGclause must identify a grouping column, or be used in set functions, or be outer references.Most commonly,
HAVINGis used together withGROUP BY, in which case the search conditions relate either values in grouping columns or results of set functions to expressions.If the
HAVINGclause is used without aGROUP BYclause, all rows in the result table are treated as a single group. In this case, theHAVINGclause must refer to a set function (since there are no grouping columns).The
GROUP BYorHAVINGclause may not be specified in aselect-specificationwhoseFROMclause names a view that usesGROUP BYorHAVING, or in aselect-specificationused in a basic predicate.Restrictions
SELECTaccess is required on all tables and views specified in aFROMclause.Notes
If the
SELECTstatement is used without theORDER BYclause, the sort order is undefined. This means that the sort order may change if new indexes are created, indexes are dropped, new statistics are gathered or if a new version of the SQL optimizer is installed.Standard Compliance
This section summarizes standard compliance for
select-specifications.
|
Mimer Information Technology AB Voice: +46 18 780 92 00 Fax: +46 18 780 92 40 info@mimer.se |
|
|