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