Apache Presto-bitwise_or(x,y)



查询

presto:default> select bitwise_or(2,3) as bit_or; 

结果

 bit_or 
-------- 
   3 

在此处,位 2(010) 和位 3(011) OR 操作结果为 3。

apache_presto_sql_functions.htm
广告