我有一个文档正在尝试使用由聚集函数创建的行进行过滤,该行如下所示:
{
"_id": {
"ID": "randNum01"
},
"ImportantVal1": 50,
"importantVal2": 22
}
{
"_id": {
"ID": "randNum02"
},
"ImportantVal1": 40,
"importantVal2": 100
}
{
"_id": {
"ID": "randNum03"
},
"ImportantVal1": 60,
"importantVal2": 2
}
如何使用聚合函数只选择重要值1>重要值2的行?
我目前正在尝试以下操作:
{
"$match": {
"ImportantVal1": {
"$gt": "$importantVal2"
}
}
}
但它什么也不返回
答案 0 :(得分:0)