INSERT SELECT and PTI Tables Examples | Teradata Vantage - Examples: INSERT SELECT and PTI Tables - Advanced SQL Engine - Teradata Database

Time Series Tables and Operations

Product
Advanced SQL Engine
Teradata Database
Release Number
17.10
Published
July 2021
Language
English (United States)
Last Update
2021-07-28
dita:mapPath
zzg1600277315070.ditamap
dita:ditavalPath
zzg1600277315070.ditaval
dita:id
B035-1208
lifecycle
previous
Product Category
Teradata Vantageā„¢

Table and Data Definition for INSERT SELECT Examples

Below are the PTI table definitions for the INSERT SELECT examples.

CREATE TABLE ocean_buoy(buoyid INT,temperature INT)
PRIMARY TIME INDEX(TIMESTAMP(6), DATE '2012-01-01', HOURS(1), COLUMNS(buoyid));
CREATE TABLE ocean_buoy_1(buoyid INT,temperature INT)
PRIMARY TIME INDEX(TIMESTAMP(6), DATE '2012-01-01', HOURS(1), COLUMNS(buoyid));
CREATE TABLE ocean_buoy_2(buoyid INT,temperature INT)
PRIMARY TIME INDEX(TIMESTAMP(6), DATE '2012-01-01', COLUMNS(buoyid));

Following are the non-PTI table definitions for the INSERT SELECT examples.

CREATE TABLE normal_table (timecode TIMESTAMP(2), buoyid INT, temperature INT);
CREATE TABLE normal_table2 (my_timebucket BIGINT NOT NULL, my_timecode TIMESTAMP(2), buoyid INT, temperature INT);