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