MongoDB排序产生异常结果

时间:2019-04-14 21:22:28

标签: mongodb sorting

我有这个数据库,我需要按降序排序。但是,当我运行以下查询时:

  db.collection.find({},{_id:0, name:0, date:0, __v:0}).sort({score: -1})

它产生了这个

{ "score" : "5" }
{ "score" : "3" }
{ "score" : "3" }
{ "score" : "12" }
{ "score" : "1" }
{ "score" : "1" }
{ "score" : "-6" }
{ "score" : "-3" }
{ "score" : "-1" }

为什么我的查询不能产生正确排序的文档,我该如何解决?预先感谢!乐谱是否格式化为字符串?如果可以的话,有办法解决吗?

0 个答案:

没有答案