PyMongo Sort 操作:提升你的数据查询效率
from pymongo import MongoClient
# 连接到MongoDB
client = MongoClient('mongodb://localhost:27017/')
db = client['mydatabase'] # 选择数据库
collection = db['mycollection'] # 选择集合
# 使用sort()方法进行排序查询
# 按照'score'字段降序排序
results = collection.find().sort('score', -1)
# 打印查询结果
for result in results:
print(result)
这段代码演示了如何使用PyMongo库连接到MongoDB,并对集合中的文档进行排序查询。通过sort('score', -1)
方法,我们按照'score'字段的降序排列文档。代码中的results
变量包含了排序后的查询结果,我们遍历并打印了每个文档。
评论已关闭