最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - MongoDB: "Unsupported projection option: pop: { $gt: 0.0 }" (debugging) - Stack Overflow

programmeradmin4浏览0评论

I'm trying to run this query:

db.zips.find({"state":"GA"}, {"pop":{$gt:0}}).sort({pop:1}).limit(5)

But I keep getting this error:

"errmsg" : "Unsupported projection option: pop: { $gt: 0.0 }"

When I run this query, it works perfectly:

db.zips.find({"state":"GA"}).sort({pop:1}).limit(5)

I'm trying to find the fields where "state" = "GA" and then where "pop" is greater than 0 and limit it to 5 results and sort them in ascending order.

When I put the {"pop":{$gt:0}} part as the first argument in the find function, it runs, but it ignores the fact that I only want states that equal "GA". I'm not sure how to fix this, does anyone know what's wrong?

I'm trying to run this query:

db.zips.find({"state":"GA"}, {"pop":{$gt:0}}).sort({pop:1}).limit(5)

But I keep getting this error:

"errmsg" : "Unsupported projection option: pop: { $gt: 0.0 }"

When I run this query, it works perfectly:

db.zips.find({"state":"GA"}).sort({pop:1}).limit(5)

I'm trying to find the fields where "state" = "GA" and then where "pop" is greater than 0 and limit it to 5 results and sort them in ascending order.

When I put the {"pop":{$gt:0}} part as the first argument in the find function, it runs, but it ignores the fact that I only want states that equal "GA". I'm not sure how to fix this, does anyone know what's wrong?

Share Improve this question edited May 23, 2020 at 11:13 sidgate 15.3k12 gold badges75 silver badges131 bronze badges asked May 4, 2017 at 21:03 user7038003user7038003 2
  • 2 Try db.zips.find({"state":"GA", "pop":{$gt:0}}).sort({pop:1}).limit(5). – s7vr Commented May 4, 2017 at 21:10
  • @Veeram that worked, thank you! – user7038003 Commented May 4, 2017 at 21:12
Add a ment  | 

1 Answer 1

Reset to default 14

Mongodb's find function takes two arguments, query and projection. The query that you are firing is having two objects, second being considered as projection criteria.

Your query should hold all the criteria in single object.

db.zips.find({
               "state":"GA", 
               "pop":{$gt:0}
            })
       .sort({pop:1})
       .limit(5)
发布评论

评论列表(0)

  1. 暂无评论