MAPREDUCE服务 MRS-聚合函数:Bitwise聚合函数

时间:2024-11-28 20:08:12

Bitwise聚合函数

  • bitwise_and_agg(x)

    描述:用补码表示输入字段x的按位与,返回类型为bigint。

    select bitwise_and_agg(x) from (values (31),(32)) as t(x);-- 0
  • bitwise_or_agg(x)

    描述:用补码表示输入字段x的按位或,返回类型为bigint。

    select bitwise_or_agg(x) from (values (31),(32)) as t(x);-- 63
support.huaweicloud.com/cmpntguide-lts-mrs/mrs_01_300205.html