Column Specification

A column specification is used to identify a column (which must contain a column identifier) in an SQL statement.

Column specification are used:

  • to define a table column in a CREATE TABLE, CREATE TABLE DESCRIPTION or CREATE VIEW statement

  • to represent the column value in a SELECT clause expression or in a search.

  • in WHERE, HAVING, GROUP BY or ORDER BY clauses, to represent all the result values after the clause is applied.

  • to represent all the row values resulting from the grouping operation as a function argument.

A column specification can be either a qualified column specification or an unqualified column identifier.

  • a qualified column specification explicitly specifies the related table

  • an unqualified column identifier does not explicitly specify the related table.

Here are the rules used to relate a column specification to one and only one table specification:

  1. the current query specification occurs in the column specification.

  2. successive query specifications are analyzed starting with the current query.

  3. the candidate table specification is the first table specification containing the column specification definition.

  4. only one candidate table specification per query specification.

Note: If the candidate table is contained in a higher query specification than the current one, the column is an outer reference.

 

Unqualified Column Specification

An unqualified column specification can be used when a column can relate unambiguously to one table (only one table within the same query specification contains the column identifier).

 

Example:

 

SELECT cruise_id,contract_id

                 FROM cruise,contract;

 

Qualified Column Specification

A qualified column specification consists of a table specification followed by a column identifier separated by a period. Use a qualified column specification when a column cannot be unambiguously related to a table (multiple tables in the same query specification contain columns with the same column identifier).

 

Example:

This example shows how the column specification distinguishes between two columns of the same name in different tables. Specify both tables in the FROM clause.

 

SELECT contract.id_cruise, sailor.id_cruise

    FROM contract,sailor;

 

Use a qualified column specification when the same table may need to be referenced more than once in the same query specification. You cannot qualify the column identifier with the table specification. Instead, use a correlation identifier to distinguish between the different references of the same table (see Table Specification for more information).

 

Example:

Use the following syntax to find the least expensive cruise for each destination. Correlate the first instance of the table cruise with the letter X because the sub-query needs to distinguish between two identical column references on two different 'instances' of the same table.

 

SELECT cruise_id,start_harbor,cruise_price

    FROM cruise X

    WHERE cruise_price = ( SELECT MIN(cruise_price)

        FROM cruise

        WHERE destination_harbor = X.destination_harbor );

Outer Reference

Outer references are a special type of qualified column specification.

An outer reference is a reference to a table column specified in a higher-level query specification. They are required if a column identifier cannot be unambiguously related to a single table.

Using qualified column specifications for outer references increases SQL statement readability.

 

Example:

This example identifies all contracts that cost more than double the cruise price of the cruises that the contracts identify. The  id_cruise column is an outer reference as the table it references is contained in the higher query specification.

 

SELECT contract_id FROM contract

    WHERE (price*2) > (SELECT cruise_price FROM cruise

        WHERE cruise_id = contract.id_cruise );

Naming Result Table Columns

Naming result table columns is a part of the SQL-2 standard entry level. This function can be used to change the displayed column name of a result table. For example:

 

SELECT col1 as lastname FROM tab1 ;

or

SELECT col1 lastname FROM tab1 ;

 

The displayed column name is then lastname instead of col1.