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