Sign in
apache
/
drill-test-framework
/
e082dbdd35d528c886418392b1428073c020669b
/
.
/
framework
/
resources
/
Advanced
/
mondrian
/
query85.q
blob: 576fe964c35f599f8b740711b2ff3f53003f09ec [
file
] [
log
] [
blame
]
select
store
.
store_state
as
c0
from
store
as
store
where
(
store
.
store_country
=
'USA'
)
and
UPPER
(
store
.
store_state
)
=
UPPER
(
'WA'
)
group
by
store
.
store_state order
by
store
.
store_state ASC NULLS LAST
;