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;