我有一个mongo数据库。对象ID字段为空的集合中存在一个文档。我想完全从数据库中删除这个集合
records = list(db.MyCollection.find())
for record in records:
if pd.isnull(record['_id']):
print(record)
{'_id': nan, 'other_data': nan}
我试过了:
db.Sample.delete_one({'_id': 'nan'})
还有:
db.Sample.delete_one({'_id': np.nan})
虽然这些都没有删除该集合。任何建议将不胜感激