Sign in
apache
/
drill-test-framework
/
0c85b4fdd97d4bceb9f295eb434983b210bff100
/
.
/
framework
/
resources
/
Functional
/
identifiers
/
q3.sql
blob: fe444ba7a3f6a7231be4d2c222dc386fad3fbce2 [
file
] [
log
] [
blame
]
-- Different case in subquery and group by
select
customerid
,
COUNT
(
CUSTOMERID
)
from
(
select
CUSTOMERID
from
`
customer
.
json
`
)
group
by
customerid
;