- Apache Presto 教程
- Apache Presto - 首页
- Apache Presto - 概述
- Apache Presto - 架构
- Apache Presto - 安装
- Apache Presto - 配置
- Apache Presto - 管理
- Apache Presto - SQL 操作
- Apache Presto - SQL 函数
- Apache Presto - MySQL 连接器
- Apache Presto - JMX 连接器
- Apache Presto - HIVE 连接器
- Apache Presto - KAFKA 连接器
- Apache Presto - JDBC 接口
- 自定义函数应用程序
- Apache Presto 有用资源
- Apache Presto - 快速指南
- Apache Presto - 有用资源
- Apache Presto - 讨论
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
广告