extract(quarter from timestamp)
现在让我们使用以下查询检查 extract(quarter) 函数。
查询
default> select extract(quarter from date '2016-08-11') as quarter_month;
上述查询将生成以下结果。
quarter_month ------------------------------- 3.0
该查询从给定月份中提取该月的四分之一。 给定的八月属于该年的第三季度。
apache_tajo_datetime_functions.html