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