- 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 decimal '123' + decimal ’22’ as decimal;
结果
decimal ------- 145
输出为十进制加法。
查询 2
presto:default> select decimal '123' - decimal ’22’ as unary_minus;
结果
unary_minus ------- 101
查询 3
presto:default> select decimal '123' between decimal '100' and decimal '200' as decimal_range;
结果
decimal_range --------------- true
此处,123 位于指定范围之间。
apache_presto_basic_sql_operations.htm
广告