在 MongoDB 中查询集合可以使用 find() 方法。语法如下:
find()
db.collection_name.find(query, projection)
其中,query 参数用于指定查询条件,projection 参数用于指定返回的字段。如果不指定查询条件和返回字段,则会返回集合中的所有文档。
query
projection