java mongo gte,Mongodb - 错误查询:BadValue未知顶级运算符:$ gte

What is wrong with this query? I tried to run it on mongodb server and received an error as following - "exception: bad query: BadValue unknown top level operator: $gte". Can anyone tell me what is wrong with it, please?

db.scores.aggregate([

{

$match: {

$or: [

{ $gte: [ "$score", 30 ] },

{ $lte: [ "$score", 60 ] }

]

}

},

{

$group: {

_id: "$gamer",

games: { $sum: 1 }

}

}

])

sample data :

{

"_id" : "545665cef9c60c133d2bce72",

"score" : 85,

"gamer" : "Latern"

}

/* 1 */

{

"_id" : "545665cef9c60c133d2bce73",

"score" : 10,

"gamer" : "BADA55"

}

/* 2 */

{

"_id" : "545665cef9c60c133d2bce74",

"score" : 62,

"gamer" : "BADA55"

}

/* 3 */

{

"_id" : "545665cef9c60c133d2bce75",

"score" : 78,

"gamer" : "l00ser"

}

/* 4 */

{

"_id" : "545665cef9c60c133d2bce76",

"score" : 4,

"gamer" : "l00ser"

}

/* 5 */

{

"_id" : "545665cef9c60c133d2bce77",

"score" : 55,

"gamer" : "FunnyCat"

}

解决方案

You did this wrong. Should be:

db.scores.aggregate([

{ "$match": {

"score": { "$gte": 30, "$lte": 60 }

}},

{ "$group": {

"_id": "$gamer",

"games": { "$sum": 1 }

}}

])

Which is the proper way to specify a "range" query where the actual conditions are "and" and therefore "between" the operands specified.

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值