W3School TIY Editor
W3School 在线教程
改变方向
暗黑模式
demo_python_mongodb_delete_many.py:
import pymongo myclient = pymongo.MongoClient("mongodb://localhost:27017/") mydb = myclient["mydatabase"] mycol = mydb["customers"] myquery = { "address": {"$regex": "^S"} } x = mycol.delete_many(myquery) print(x.deleted_count, "documents deleted")
[email protected]
:/home/python#python demo_python_mongodb_delete_many.py
2 documents deleted.