Example: Verifying the Ending Bound of a Period Expression - Teradata VantageCloud Lake

Lake - Working with SQL

Deployment
VantageCloud
Edition
Lake
Product
Teradata VantageCloud Lake
Release Number
Published
February 2025
ft:locale
en-US
ft:lastEdition
2025-11-21
dita:mapPath
jbe1714339405530.ditamap
dita:ditavalPath
pny1626732985837.ditaval
dita:id
jbe1714339405530

The following example uses IS [NOT] UNTIL_CHANGED in the PPI partitioning expression to check whether the ending bound of a Period expression is UNTIL_CHANGED.

   CREATE TABLE TESTUC
     (A  INTEGER,
      B  PERIOD (DATE),
      C INTEGER)
     PRIMARY INDEX (A)
     PARTITION BY
        CASE_N (END (b) IS UNTIL_CHANGED,
                END (b) IS NOT UNTIL_CHANGED, UNKNOWN);