Sign in
apache
/
drill-test-framework
/
HEAD
/
.
/
framework
/
resources
/
Advanced
/
mondrian
/
query2692.q
blob: 5246d9b62696cdec737b95cec7d0a5e6623df4dc [
file
] [
log
] [
blame
]
select
customer
.
city
as
c0
from
customer
as
customer
where
(
customer
.
state_province
=
'CA'
)
and
UPPER
(
customer
.
city
)
=
UPPER
(
'Santa Cruz'
)
group
by
customer
.
city order
by
customer
.
city ASC NULLS LAST
;