Sign in
apache
/
drill-test-framework
/
d8d7538f560c515139a5f4743d86b15968a46092
/
.
/
framework
/
resources
/
Functional
/
hive
/
hive_functions
/
date_less_groupby.q
blob: fd9e75132ea7c5f3bb702aeaa3d8d43e312543fb [
file
] [
log
] [
blame
]
select
sum
(
contributions
)
as
col1
,
count
(
create_date
)
as
col2
,
create_date
from
voter_parquet
where
create_date
<
'2016-06-01'
group
by
create_date order
by
create_date
;