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)
Était-ce utile?

La 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 :-)

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top