602SQL Documentation Index  

Table Column Names (SQL)

column_name ::= [table_name.]column_name

Description:

The column name may be (and must be, if a column duplicity may occur) prefixed with the table name, or with the table alias.

Variances from the norm

Usage in a Query:

SELECT A.name
FROM Companies A
WHERE 10000 < (SELECT SUM(B.value)
              FROM INVOICES B
              WHERE A.number=B.company)