to_char(timestamp, format text)

现在让我们使用以下查询检查 to_char(timestamp,format) 函数。

查询

default> select to_char(current_timestamp,'dd-mm-yyyy') as convert_char;  

上述查询将生成以下结果。

convert_char 
------------------------------- 
11-08-2016 

查询将时间戳转换为字符格式。

apache_tajo_datetime_functions.html