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