Sign in
apache
/
druid
/
HEAD
/
.
/
sql
/
src
/
test
/
resources
/
drill
/
window
/
queries
/
nestedAggs
/
basic_9.q
blob: b220ab1ce9e62fe3a4402eb20902d59f26a9ad27 [
file
]
SELECT col8
,
COUNT
(
COUNT
(
col8
))
OVER
(
PARTITION BY col7 ORDER BY col0
)
count_col8
,
col7 FROM
"allTypsUniq.parquet"
GROUP BY col0
,
col7
,
col8