- 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 lessthan;
结果
lessthan ---------- true (1 row)
以上条件为真,因此结果为真。
查询 2
presto:default> select 25 >= 45 as greater;
结果
greater --------- false (1 row)
以上条件为假,因此结果为假。
查询 3
presto:default> select 3<>5 as notequal;
结果
notequal ---------- true
这里 3 不等于 5,因此结果返回为真。
apache_presto_basic_sql_operations.htm
广告