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