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