TD_TIMEBUCKET Example | Teradata Vantage - Example: Get a TD_TIMEBUCKET Value from a TD_TIMEBUCKET Column - 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ā„¢
create table ocean_buoys(buoyid integer, salinity integer, temperature integer)
PRIMARY TIME INDEX(TIMESTAMP(6), DATE '2016-04-19', HOURS(1));
 
-- The following two adjcent SELECT statements should return the same output:
SELECT td_gettimebucket(td_timecode) from ocean_buoys;
SELECT td_gettimebucket(ocean_buoys.td_timecode) from ocean_buoys;
 
TD_GETTIMEBUCKET(TD_TIMECODE)
-----------------------------
289
  
 
-- The column title contains TIMEBUCKET_COL.
SELECT td_gettimebucket(ocean_buoys.td_timecode) as TimeBucket_COL from ocean_buoys;
 
TIMEBUCKET_COL
--------------
           289
 
SELECT buoyid FROM ocean_buoys WHERE td_gettimebucket(td_timecode) > 200;
 
BUOYID
------
   101