Sign in
apache
/
drill-test-framework
/
9a5d7ecf7f32f0e95c0ea874e75d785fdee9e51d
/
.
/
framework
/
resources
/
Functional
/
limit0
/
filters
/
plan
/
q17.sql
blob: d1d4800af015cd3702cfdb29bb71b68effd55d5e [
file
] [
log
] [
blame
]
explain
plan
for
select
*
from
(
-- join with group by
select
x
,
y
,
z
from
(
select
min
(
t1
.
a1
),
t1
.
b1
,
avg
(
t1
.
a1
)
from
t1_v t1
,
t2_v t2
where
t1
.
c1
=
t2
.
c2
group
by
t1
.
a1
,
t1
.
b1
)
as
sq
(
x
,
y
,
z
)
where
y
like
'%b%'
)
t limit
0
;