Sign in
apache
/
drill-test-framework
/
HEAD
/
.
/
framework
/
resources
/
Advanced
/
mondrian
/
query4.q
blob: 6c372cc6ba10755e0957d7d716bd4469c6310d42 [
file
] [
log
] [
blame
]
select
store
.
store_city
as
c0
from
store
as
store
where
(
store
.
store_state
=
'CA'
)
and
UPPER
(
store
.
store_city
)
=
UPPER
(
'Los Angeles'
)
group
by
store
.
store_city order
by
store
.
store_city ASC NULLS LAST
;