Sign in
apache
/
drill-test-framework
/
d8d7538f560c515139a5f4743d86b15968a46092
/
.
/
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
;