Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
1. db.bios.find().sort( { name: 1 } ).limit( 5 ) 2.db.bios.find().limit(5).sort({name:1})
1.两者相等,先排序,再限定结果。 2.为了优化这一点,考虑在name上建立索引,如果这将是一个频繁的查询。 3. find() 的自然顺序通常是插入顺序,但不能保证文档是否在创建后更新。