Example: Join Before Expansion - Teradata Database - Teradata Vantage NewSQL Engine

SQL Data Manipulation Language

Product
Teradata Database
Teradata Vantage NewSQL Engine
Release Number
16.20
Published
March 2019
Language
English (United States)
Last Update
2019-05-03
dita:mapPath
fbo1512081269404.ditamap
dita:ditavalPath
TD_DBS_16_20_Update1.ditaval
dita:id
B035-1146
lifecycle
previous
Product Category
Teradata Vantage™

Following are the table definitions for this example:

     CREATE SET TABLE DR.t3, NO FALLBACK , NO BEFORE JOURNAL,
                             NO AFTER JOURNAL, CHECKSUM = DEFAULT (
       a  INTEGER,
       b  INTEGER,
       pd PERIOD(TIMESTAMP(6)))
     PRIMARY INDEX (a);
     CREATE SET TABLE DR.t4, NO FALLBACK, NO BEFORE JOURNAL,
                             NO AFTER JOURNAL, CHECKSUM = DEFAULT (
       x  INTEGER NOT NULL,
       y  INTEGER NOT NULL,
       pd PERIOD(DATE))
     PRIMARY INDEX (x);

This example shows how Teradata Database joins the tables specified in an EXPAND ON clause when the specified period expression specifies a column from a table that is not specified in the FROM clause .

     SELECT expd
             FROM t4
             EXPAND ON t3.pd AS expd;

An EXPLAIN shows a JOIN with t3.