Sign in
apache
/
drill-test-framework
/
9a5d7ecf7f32f0e95c0ea874e75d785fdee9e51d
/
.
/
framework
/
resources
/
Functional
/
identifiers
/
q4.sql
blob: 995daa39a76dfc13e6aa55ce75c6837f13c3cb1b [
file
] [
log
] [
blame
]
-- different case of the same column in join
select
a
.
CustomerID
,
b
.
cityid
from
`
customer
.
json
`
a
,
`
customer
.
json
`
b
where
a
.
CUSTOMERID
=
b
.
customerID
order
by
a
.
customerid
;