Question

I am looking to use Teradata to group volume hourly over a date range when 'time' is a timestamp(6)

SELECT VOLUME, HOUR(time)
FROM table
GROUP BY HOUR(time)
Was it helpful?

Solution

There's no HOUR function in Teradata, according to Standard SQL it's EXTRACT:

EXTRACT(HOUR FROM timestampcol)

And of course you need a aggregate function, but i assume VOLUME will be the alias for a SUM/AVG/COUNT :-)

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top