Sign in
apache
/
drill-test-framework
/
9a5d7ecf7f32f0e95c0ea874e75d785fdee9e51d
/
.
/
framework
/
resources
/
Functional
/
identifiers
/
q2.sql
blob: a266d7c32c75cef8301b415d437c392f4a4688bb [
file
] [
log
] [
blame
]
-- star in subquery, upper case in projection list
select
CUSTOMERID
,
CITYID
from
(
select
*
from
`
customer
.
json
`
)
where
CUSTOMERID
>=
100
order
by
customerid
;