Sign in
apache
/
drill-test-framework
/
d8d7538f560c515139a5f4743d86b15968a46092
/
.
/
framework
/
resources
/
Functional
/
hive
/
hive_functions
/
char_groupby.q
blob: dac97aaa713467c4c732086c22d1e6f9d025823a [
file
] [
log
] [
blame
]
select
sum
(
contributions
)
as
col1
,
count
(
registration
)
as
col2
,
registration
from
voter_text
where
registration
<>
'green'
group
by
registration order
by
registration
;