1、说明
MongoDB使用查看数据的功能时非常方便。能立即看到增删改查的数据,无需操作命令行即可查看。
2、方法实例
(1)增
# 增加一条记录 person = {'name': 'zone','sex':'boy'} person_id = test.insert_one(person).inserted_id print(person_id)
(2)删
# 删除单条记录 result1 = test.delete_one({'name': 'zone'}) pprint.pprint(result1)
(3)改
# 更新单条记录 res = test.update_one({'name': 'zone'}, {'$set': {'sex': 'girl girl'}}) print(res.matched_count)
(4)查
# 查找多条记录 pprint.pprint(test.find()) # 添加查找条件 pprint.pprint(test.find({"sex": "boy"}).sort("name"))
以上就是python中MongoDB增删改查的操作,希望对大家有所帮助。更多Python高级指路:
本文教程操作环境:windows7系统、Python 3.9.1,DELL G3电脑。