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