Sign in
apache
/
drill-test-framework
/
9a5d7ecf7f32f0e95c0ea874e75d785fdee9e51d
/
.
/
framework
/
resources
/
Functional
/
aggregates
/
aggregation
/
group_by_expression
/
group_by_length_order_by_count_star.sql
blob: ce003dda8bc10ae72211155e378feb8de37c5f53 [
file
] [
log
] [
blame
]
select
length
(
c_varchar
),
count
(*)
from
alltypes
group
by
length
(
c_varchar
)
order
by
count
(*);