首页 > 数据库技术 > 详细

python 操作MongoDB非关系型数据库

时间:2018-07-03 22:59:50      阅读:226      评论:0      收藏:0      [点我收藏+]
# 导入MongDB模块
import pymongo
from pymongo import MongoClient

# 连接本地服务器

conn = MongoClient("localhost", 27017)

# 连接数据库
db = conn.zhang

# 获取集合student 表名
collection = db.student
"""
# 统计数据数
res = collection.find().count()

# 查询全部数据
res = collection.find()

# 升序
res = collection.find().sort(age)

# 降序
res = collection.find().sort(age, pymongo.DESCENDING)

# 更新数据
collection.updateOne({name:yuyue},{$set:{age:3333}})

# 删除条件数据
collection.remove({name:yuyue})

# 全部删除数据
collection.remove()

# 插入数据
collection.insert({name:zhangguanghe, age:22, addr: 丽水金阳, phone: 18698828830})

# 条件查询
res = collection.find({age:{$ne:22}})
"""

# 断开连接
conn.close()

 

python 操作MongoDB非关系型数据库

原文:https://www.cnblogs.com/zhangguanghe/p/9260996.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!