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