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.html