当前位置: 首页 > 工具软件 > PyMongo > 使用案例 >

pymongo的基本操作

百里沛
2023-12-01

import pymongo

#连接数据库实例(连接数据库)—>获取相应数据库—>获取相应collection(表)
client = pymongo.MongoClient(host=‘localhost’, port=27017)
db = client.test
collection = db.students #数据库表本质是一个字典

student1 = {
‘id’: ‘20170101’,
‘name’: ‘Jordan’,
‘age’: 20,
‘gender’: ‘male’
}

student_update= {
“id” : “20170101”,
“name”: “jack”,
“age” : “19”,
“gender”:“male”
}

#NoSQL
#SQL mysql sqlite3 sqlserver oracle
#添加数据如果不指定_id字段,系统会默认生成一个objectId
#insert into students(id,name,age,gender) values(‘20170101’,‘jordan’,20,‘male’)
collection.insert_one(student1)
#find查找返回符合条件的多个结果,查询条件使用字典指定,可使用多个字段
#select * from students where id = ‘20170101’
result_find = collection.find({“age”:{"$gt":19}})
#返回一个游标,游标相当于一个迭代器,存取查询结果,可使用next()获取一条结果
print(result_find.next())

#update students set name=‘jack’ where id = ‘20170101’
#更新指定条件数据,upsert为True指定更新符合条件数据,如果没有符合条件数据,执行插入操作

$set是mongodb内置函数,覆盖原始数据

collection.update({“id”:“20170101”},{"$set":student_update},upsert=True)
#delete from students where id = “20170101”
collection.remove({“id”:“20170101”})

 类似资料: