当前位置:   article > 正文

MongoDB聚合运算符:$bitAnd

MongoDB聚合运算符:$bitAnd

$bitAnd集合运算符返回对intlong数组进行位操作和运算的结果。

语法

{ $bitAnd: { [ <expression1>, <expression2>, ... ] }
  • 1

用法

  • 如果操作数包括整型和长整型值,MongoDB会对计算出的整数结果进行符号扩展,并返回长整型值,否则返回相应值类型的结果。
  • 如果参数数组元素是不同的数据类型,比如:字符串、双精度数或小数,将返回错误。
  • 如果参数是空数组,则返回NumberInt(-1)
  • 如果任何操作数为null,则返回null

**注意:**使用mongosh时,所有的数值都是双精度数double类型,没有整型,在mongosh中要使用整型,必须要使用NumberInt()NumberLong()进行强制类型转换,切记切记!

举例

使用下面的命令创建switches集合:

db.switches.insertMany( [
    { _id: 0, a: NumberInt(0), b: NumberInt(127) },
    { _id: 1, a: NumberInt(2), b: NumberInt(3) },
    { _id: 2, a: NumberInt(3), b: NumberInt(5) }
] )
  • 1
  • 2
  • 3
  • 4
  • 5

两个整数按位进行与操作

下面的聚合在$project阶段使用$bitAnd对字段ab进行与操作:

db.switches.aggregate( [
  {
    $project: {
      result: {
        $bitAnd: [ "$a", "$b" ]
      }
    }
  }
])
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9

返回的结果如下:

  [
    { "_id": 0, "result": 0 }
    { "_id": 1, "result": 2 }
    { "_id": 2, "result": 1 }
  ]
  • 1
  • 2
  • 3
  • 4
  • 5

长整数和整数按位与操作

下面的聚合在$project阶段使用$bitAnd对整型字段a和转换为长整型的字段b进行与操作:

db.switches.aggregate( [
  {
    $project: {
      result: {
        $bitAnd: [ "$a", NumberLong("63") ]
      }
    }
  }
])
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9

操作返回下面的结果:

  [
    { "_id": 0, "result": Long("0") }
    { "_id": 1, "result": Long("2") }
    { "_id": 2, "result": Long("3") }
  ]
  • 1
  • 2
  • 3
  • 4
  • 5
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/AllinToyou/article/detail/140838
推荐阅读
相关标签
  

闽ICP备14008679号