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