如何按 mongo 查询中的降序排序?
How to sort order by descending in mongo query?
我想在 MongoDB 的集合中显示最近添加的数据。
我该怎么做?
您可以使用 auto-generated-createdat-and-updatedat-fields-in-mongodb, then use the $orderby 运算符将其降序排列。
如果您希望 table 增长,那么在这些字段上添加索引可能是值得的。
db.collection.find().sort( { age: -1 } )
我想在 MongoDB 的集合中显示最近添加的数据。
我该怎么做?
您可以使用 auto-generated-createdat-and-updatedat-fields-in-mongodb, then use the $orderby 运算符将其降序排列。 如果您希望 table 增长,那么在这些字段上添加索引可能是值得的。
db.collection.find().sort( { age: -1 } )