Apache Presto - 日期时间运算符



查询 1

presto:default> select date '2016-06-20' + interval '2' day as date_add; 

结果

 date_add 
------------ 
 2016-06-22 

上述输出表示使用间隔数据类型从指定日期添加两天。

查询 2

presto:default> select time '12:30' + interval '1' hour as time_add; 

结果

   time_add 
-------------- 
 13:30:00.000 

此处,从给定时间添加一小时。

查询 3

presto:default> select timestamp '2016-06-21 12:32' + interval '2' year 
as timestamp_add;

结果

   timestamp_add 
------------------------- 
 2018-06-21 12:32:00.000 
apache_presto_basic_sql_operations.htm
广告