Sign in
apache
/
drill-test-framework
/
HEAD
/
.
/
framework
/
resources
/
Functional
/
window_functions
/
bugs
/
drill-3292.sql
blob: 05b9e2369ea874c74750b2a63baccc081e2d08b5 [
file
] [
log
] [
blame
]
select
sum
(
1
)
over
w sum1
,
sum
(
5
)
over
w sum5
,
sum
(
10
)
over
w sum10
from
j1
where
c_date
is
not
null
window w
as
(
partition
by
c_date
);