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