Sign in
apache
/
drill-test-framework
/
0c85b4fdd97d4bceb9f295eb434983b210bff100
/
.
/
framework
/
resources
/
Functional
/
views
/
query10.q
blob: 7a7fbaa183c91419d06c98731598a780e78840c2 [
file
] [
log
] [
blame
]
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
;