I have a Table with a \"Date\" Column. I want to group by hour for a specific date.
You can also do this:
SELECT TRUNC(datecol, 'HH24') FROM mytable GROUP BY TRUNC(datecol, 'HH24');