Sign in
apache
/
drill-test-framework
/
HEAD
/
.
/
framework
/
resources
/
Functional
/
views
/
query25.q
blob: 35a17972923be10210bfbb8bfa847a9f7d1467d6 [
file
] [
log
] [
blame
]
create
or
replace view v25
as
select
*
from
`dfs/parquet/rankings`
rankings inner join
`dfs/parquet/uservisits`
uservisits on rankings
.
pageURL
=
uservisits
.
destinationURL
;
select
count
(*)
from
v25
;
drop view v25
;