Sign in
apache
/
drill-test-framework
/
refs/heads/main
/
.
/
framework
/
resources
/
Functional
/
views
/
query10.q
blob: 7a7fbaa183c91419d06c98731598a780e78840c2 [
file
]
create
or
replace view v10
as
select
pageRank a
,
pageURL b
,
avgDuration c
from
`dfs/parquet/rankings`
;
select
a
,
b
,
c
from
v10
;
drop view v10
;