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