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