Sign in
apache
/
drill-test-framework
/
HEAD
/
.
/
framework
/
resources
/
Advanced
/
mondrian
/
query2322.q
blob: d2c7e76e6050a10195f88f16798837406e1f8a16 [
file
] [
log
] [
blame
]
select
customer
.
state_province
as
c0
from
customer
as
customer
where
(
customer
.
country
=
'Canada'
)
and
UPPER
(
customer
.
state_province
)
=
UPPER
(
'BC'
)
group
by
customer
.
state_province order
by
customer
.
state_province ASC NULLS LAST
;