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