Using Parentheses to Customize Precedence - Advanced SQL Engine - Teradata Database

SQL Data Manipulation Language

Product
Advanced SQL Engine
Teradata Database
Release Number
17.00
Published
September 2020
Language
English (United States)
Last Update
2021-01-23
dita:mapPath
qtb1554762060450.ditamap
dita:ditavalPath
lze1555437562152.ditaval
dita:id
B035-1146
lifecycle
previous
Product Category
Teradata Vantage™

To override precedence, use parentheses. Operations in parentheses are performed first.

For example, consider the following form:

   ( ( SELECT statement_1 
       UNION 
       SELECT statement_2 )
   EXCEPT
     ( SELECT statement_3 
       UNION 
       SELECT statement_4 )
   )
   EXCEPT 
   SELECT statement_5 
   INTERSECT 
   SELECT statement_6;

The following list explains the precedence of operators for this example.

  1. UNION SELECT statement _1 and SELECT statement _2.
  2. UNION SELECT statement _3 and SELECT statement _4.
  3. Subtract the result of the second UNION from the result of the first UNION.
  4. INTERSECT SELECT statement _5 and SELECT statement _6.
  5. Subtract the INTERSECT result from the remainder of the UNION operations.