Apache Presto - Relational Operator



Relational operators are used to compare between two values. Take a look at the following queries. They show how relational operators work.

Query 1

presto:default> select 4 < 5 as lessthan;

Result

 lessthan 
---------- 
 true 
(1 row) 

The above condition is true, hence the result is true.

Query 2

presto:default> select 25 >= 45 as greater; 

Result

 greater 
--------- 
 false 
(1 row) 

The above condition is false, hence the result is false.

Query 3

presto:default> select 3<>5 as notequal;

Result

 notequal 
---------- 
  true

Here 3 is not equal to 5, hence the result is returned as true.

apache_presto_basic_sql_operations.htm
Advertisements