I have a Hive Query like
SELECT Year, Month, Day, Hours, Minutes,
cast((cast(Seconds as int)/15) as int)*15
AS secondMod, Count(*) AS PerCount FROM L
In Hive 0.11.0 and later, columns can be specified by position if hive.groupby.orderby.position.alias
is set to true
.
Please confirm if the following query works for you.
SET hive.groupby.orderby.position.alias=true;
SELECT Year
,Month
,Day
,Hours
,Minutes
,cast((cast(Seconds as int)/15) as int)*15 AS secondMod
,count(*) AS PerCount
FROM LoggerTable
GROUP BY 1, 2, 3, 4, 5, 6
ORDER BY 7;