Example: INSERT Using a PERIOD Value Constructor - Teradata Vantage

Teradata® VantageCloud Lake

Deployment
VantageCloud
Edition
Lake
Product
Teradata Vantage
Published
January 2023
ft:locale
en-US
ft:lastEdition
2024-12-11
dita:mapPath
phg1621910019905.ditamap
dita:ditavalPath
pny1626732985837.ditaval
dita:id
phg1621910019905

The following examples use tables t1 and t2, which are defined as follows:

     CREATE TABLE t1 (
       c1 INTEGER
       c2 PERIOD(DATE))
     UNIQUE PRIMARY INDEX (c1);
     CREATE TABLE t2 (
       a INTEGER
       b DATE
       c DATE)
     UNIQUE PRIMARY INDEX (a);

The following two INSERT requests both use a PERIOD value constructor:

     INSERT INTO t1
     VALUES (1, PERIOD(DATE '2005-02-03', DATE '2006-02-04'));
     INSERT INTO t1
       SELECT a, PERIOD(b, c)
       FROM t2;