📜  mongodb 获取前 10 条记录 - Python 代码示例
📅  最后修改于: 2022-03-11 14:45:32.795000             🧑  作者: Mango
代码示例1
#I get the first ten documents from the collection
query = db.collection.find({
#whatever
}).limit(10);