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