これは、 $ where コード>
オペレーター。
db.collection.find({ "$where": function() {
return Math.round(this.amount.value * 100)/ 100 === 1.12;
}
})
編集(このコメントの後 )
この場合、集約フレームワーク、特に $ redact
演算子であり、これは $ where
を使用するソリューションよりもはるかに高速です
db.collection.aggregate([
{ "$redact": {
"$cond": [
{ "$eq": [
{ "$subtract": [
"$amount.value",
{ "$mod": [ "$amount.value", 0.01 ] }
]},
0.03
]},
"$$KEEP",
"$$PRUNE"
]
}}
])