Вопрос

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)
Это было полезно?

Решение

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

Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top