技术干货| 一文读懂如何查询 MongoDB 文档
一.查询文档本段提供了使用mongoshell中db.collection.find()方法查询的案例。案例中使用的inventory集合数据可以通过下面的语句产生。db.inventory.insertMany([{item:"journal",qty:25,size:{h:14,w:21,uom:"cm"},status:"A"},{item:"notebook",qty:50,size:{h:8.5,w:11,uom:"in"},status:"A"},{item:"paper",qty:100,size:{h:8.5,w:11,uom:"in"},status:"D"},{item:"planner",qty:75,size:{h:22.85,w:30,uom:"cm"},s...