select extract(hour from timestamp)
现在让我们使用以下查询检查 extract(hour) 函数。
查询
default> select extract(hour from timestamp '2016-08-11 17:17:00') as hour_field;
上述查询将生成以下结果。
hour_field ------------------------------- 17.0
该查询从给定时间戳中提取一个小时。
apache_tajo_datetime_functions.html