Sign in
apache
/
drill-test-framework
/
d8d7538f560c515139a5f4743d86b15968a46092
/
.
/
framework
/
resources
/
Functional
/
views
/
query11.q
blob: 587467a228c70e3796e413355e76c2124f3e325f [
file
] [
log
] [
blame
]
create
or
replace view v11
as
select
pageRank
,
max
(
avgDuration
)
maxDuration
from
`dfs/parquet/rankings`
group
by
pageRank
;
select
pageRank
,
maxDuration
+
4
from
v11
;
drop view v11
;