Sign in
apache
/
drill-test-framework
/
HEAD
/
.
/
framework
/
resources
/
Functional
/
window_functions
/
nestedAggs
/
nstdagg26.q
blob: 02ce745e5cf1d5f76ef6bfe2bdc74a7477217d1c [
file
]
SELECT count
(
count
(
distinct col7
))
over
(
PARTITION BY col7
),
col7
from
`allTypsUniq.parquet`
GROUP BY col7
;