赞
踩
$bitAnd
集合运算符返回对int
或long
数组进行位操作和运算的结果。
{ $bitAnd: { [ <expression1>, <expression2>, ... ] }
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) }
] )
下面的聚合在$project
阶段使用$bitAnd
对字段a
和b
进行与操作:
db.switches.aggregate( [
{
$project: {
result: {
$bitAnd: [ "$a", "$b" ]
}
}
}
])
返回的结果如下:
[
{ "_id": 0, "result": 0 }
{ "_id": 1, "result": 2 }
{ "_id": 2, "result": 1 }
]
下面的聚合在$project
阶段使用$bitAnd
对整型字段a
和转换为长整型的字段b
进行与操作:
db.switches.aggregate( [
{
$project: {
result: {
$bitAnd: [ "$a", NumberLong("63") ]
}
}
}
])
操作返回下面的结果:
[
{ "_id": 0, "result": Long("0") }
{ "_id": 1, "result": Long("2") }
{ "_id": 2, "result": Long("3") }
]
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。