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