Sign in
apache
/
drill-test-framework
/
HEAD
/
.
/
framework
/
resources
/
Functional
/
window_functions
/
multiple_partitions
/
q4.sql
blob: 7dadf7a1bcff3509e563a139737a460c914d0e80 [
file
] [
log
] [
blame
]
select
sum
(
c_integer
)
over
(
partition
by
c_date
,
c_time
,
c_timestamp
),
sum
(
c_integer
)
over
()
from
j7
;