Sign in
apache
/
drill-test-framework
/
refs/heads/main
/
.
/
framework
/
resources
/
Functional
/
complex
/
json
/
complex275.q
blob: c698d6f752f5aee30ec2c3df64e4800a11c8a4da [
file
]
select
tt
.
gbyi
,
sum
(
tt
.
id
),
avg
(
tt
.
fl
),
count
(
tt
.
nul
),
count
(
tt
.
bool
)
from
(
select
t
.
id
,
t
.
gbyi
,
t
.
fl
,
t
.
nul
,
t
.
bool
from
`complex.json`
t
where
t
.
bool
is
true
)
tt
where
tt
.
bool
is
false
group
by
tt
.
gbyi order
by
tt
.
gbyi
;