- 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 4 + 5 as addition;
结果
addition ---------- 9 (1 row)
在以上结果中,“as”用于作为查询的别名。
查询 2
presto:default> select 4.5-3.5 as sub;
结果
sub ----- 1.0 (1 row)
输出是两个值之间的减法。
查询 3
presto:default> select 4 % 2 as modulus;
结果
modulus --------- 0 (1 row)
输出以内给定值返回模。
apache_presto_basic_sql_operations.htm
广告