在MongoDB中,可以使用find()方法查询所有数据。
示例:
db.collection.find({})
其中,db是数据库对象,collection是集合对象。
db
collection
注意:在实际使用中,可以通过指定查询条件来筛选数据,如:
db.collection.find({ field: value })
其中,field是字段名,value是对应字段的值。
field
value