Sign in
apache
/
drill-test-framework
/
9a5d7ecf7f32f0e95c0ea874e75d785fdee9e51d
/
.
/
framework
/
resources
/
Functional
/
aggregates
/
aggregation
/
group_by_expression
/
extract_month_from_date.sql
blob: 706874270292670a92f407fa68526dcdd158bd40 [
file
] [
log
] [
blame
]
select
extract
(
month
from
c_date
)
from
alltypes
group
by
extract
(
month
from
c_date
)
order
by
extract
(
month
from
c_date
);