python中MongoDB查询符合条件的数据有多少条问题
# -*- coding: utf-8 -*-import pymongo
client = pymongo.MongoClient(host='localhost',port=27017)
db = client.test
count = db.collection.find({'age':20}).count()
print(count)
错误提示如下:
DeprecationWarning: count is deprecated. Use Collection.count_documents instead.
count = db.collection.find({'age':20}).count()
怎么查询符合条件的age等于20呢? 根据错误提示,count方法已过时,建议使用count_documents方法来统计满足条件的文档数量。以下是修改后的代码:
import pymongo
client = pymongo.MongoClient(host='localhost', port=27017)
db = client.test
count = db.collection.count_documents({'age': 20})
print(count)
在这个例子中,我们使用count_documents方法来统计collection集合中满足age等于20的文档数量。然后将结果打印出来。
请确保将collection替换为实际的集合名,同时将age和20替换为您想要查询的条件。
如果您还有其他问题,请随时提问。
在新版本的MongoDB驱动程序中,`count()`方法已被弃用,建议使用`count_documents()`方法来查询符合条件的数据数量。下面是更新后的代码示例:
# -*- coding: utf-8 -*-
import pymongo
client = pymongo.MongoClient(host='localhost', port=27017)
db = client.test
count = db.collection.count_documents({'age': 20})
print(count)
这样就可以查询到符合条件的age等于20的数据数量了。请注意使用正确的集合名称替换`collection`。
页:
[1]