Sign in
apache
/
drill-test-framework
/
HEAD
/
.
/
framework
/
resources
/
Functional
/
window_functions
/
nestedAggs
/
nstdagg14.q
blob: 1179b4db87a62bfa5e45a82412e9de649a1ec5fd [
file
]
SELECT c2
,
MAX
(
AVG
(
c1
))
OVER
()
FROM
`tblWnulls.parquet`
GROUP BY c2
;