Sign in
apache
/
drill-test-framework
/
HEAD
/
.
/
framework
/
resources
/
Functional
/
window_functions
/
negative
/
q11.sql
blob: 91224eff999452c7fe79d05c83887cc80f9c555e [
file
] [
log
] [
blame
]
select
FIRST_VALUE
(
a1
)
OVER
(
PARTITION
BY
b1
ORDER
BY
c1
ROWS
BETWEEN
CURRENT
ROW
AND
1
FOLLOWING
)
as
t
from
t1
;