Python MongoDB-문서 삭제
컬렉션에서 문서를 삭제할 수 있습니다. remove()MongoDB의 방법. 이 방법은 두 개의 선택적 매개 변수를 허용합니다.
문서 삭제 조건을 지정하는 삭제 기준.
하나만, true 또는 1을 두 번째 매개 변수로 전달하면 하나의 문서 만 삭제됩니다.
통사론
다음은 remove () 메서드의 구문입니다.
>db.COLLECTION_NAME.remove(DELLETION_CRITTERIA)
예
아래와 같이 컬렉션을 만들고 5 개의 문서를 삽입했다고 가정합니다.
> use testDB
switched to db testDB
> db.createCollection("myColl")
{ "ok" : 1 }
> data = [
... {"_id": "1001", "name": "Ram", "age": "26", "city": "Hyderabad"},
... {"_id": "1002", "name": "Rahim", "age": 27, "city": "Bangalore"},
... {"_id": "1003", "name": "Robert", "age": 28, "city": "Mumbai"},
... {"_id": "1004", "name": "Romeo", "age": 25, "city": "Pune"},
... {"_id": "1005", "name": "Sarmista", "age": 23, "city": "Delhi"},
... {"_id": "1006", "name": "Rasajna", "age": 26, "city": "Chennai"}
]
> db.sample.insert(data)
BulkWriteResult({
"writeErrors" : [ ],
"writeConcernErrors" : [ ],
"nInserted" : 6,
"nUpserted" : 0,
"nMatched" : 0,
"nModified" : 0,
"nRemoved" : 0,
"upserted" : [ ]
})
다음 쿼리는 이름 값이 Sarmista 인 컬렉션의 문서를 삭제합니다.
> db.sample.remove({"name": "Sarmista"})
WriteResult({ "nRemoved" : 1 })
> db.sample.find()
{ "_id" : "1001", "name" : "Ram", "age" : "26", "city" : "Hyderabad" }
{ "_id" : "1002", "name" : "Rahim", "age" : 27, "city" : "Bangalore" }
{ "_id" : "1003", "name" : "Robert", "age" : 28, "city" : "Mumbai" }
{ "_id" : "1004", "name" : "Romeo", "age" : 25, "city" : "Pune" }
{ "_id" : "1006", "name" : "Rasajna", "age" : 26, "city" : "Chennai" }
호출하면 remove() 삭제 기준을 통과하지 않고 메서드를 사용하면 컬렉션의 모든 문서가 삭제됩니다.
> db.sample.remove({})
WriteResult({ "nRemoved" : 5 })
> db.sample.find()
Python을 사용하여 문서 삭제
MangoDB 컬렉션에서 문서를 삭제하려면 메서드를 사용하여 컬렉션에서 문서를 삭제할 수 있습니다. delete_one() 과 delete_many() 행동 양식.
이러한 메서드는 문서 삭제 조건을 지정하는 쿼리 개체를받습니다.
detele_one () 메서드는 일치하는 경우 단일 문서를 삭제합니다. 쿼리가 지정되지 않은 경우이 메서드는 컬렉션의 첫 번째 문서를 삭제합니다.
예
다음 파이썬 예제는 ID 값이 1006 인 컬렉션의 문서를 삭제합니다.
from pymongo import MongoClient
#Creating a pymongo client
client = MongoClient('localhost', 27017)
#Getting the database instance
db = client['lpaksgf']
#Creating a collection
coll = db['example']
#Inserting document into a collection
data = [
{"_id": "1001", "name": "Ram", "age": "26", "city": "Hyderabad"},
{"_id": "1002", "name": "Rahim", "age": "27", "city": "Bangalore"},
{"_id": "1003", "name": "Robert", "age": "28", "city": "Mumbai"},
{"_id": "1004", "name": "Romeo", "age": 25, "city": "Pune"},
{"_id": "1005", "name": "Sarmista", "age": 23, "city": "Delhi"},
{"_id": "1006", "name": "Rasajna", "age": 26, "city": "Chennai"}
]
res = coll.insert_many(data)
print("Data inserted ......")
#Deleting one document
coll.delete_one({"_id" : "1006"})
#Retrieving all the records using the find() method
print("Documents in the collection after update operation: ")
for doc2 in coll.find():
print(doc2)
산출
Data inserted ......
Documents in the collection after update operation:
{'_id': '1001', 'name': 'Ram', 'age': '26', 'city': 'Hyderabad'}
{'_id': '1002', 'name': 'Rahim', 'age': '27', 'city': 'Bangalore'}
{'_id': '1003', 'name': 'Robert', 'age': '28', 'city': 'Mumbai'}
{'_id': '1004', 'name': 'Romeo', 'age': 25, 'city': 'Pune'}
{'_id': '1005', 'name': 'Sarmista', 'age': 23, 'city': 'Delhi'}
마찬가지로 delete_many() pymongo의 메소드는 지정된 조건을 만족하는 모든 문서를 삭제합니다.
예
다음 예제는 컬렉션에서 나이 값이 26보다 큰 모든 문서를 삭제합니다.
from pymongo import MongoClient
#Creating a pymongo client
client = MongoClient('localhost', 27017)
#Getting the database instance
db = client['sampleDB']
#Creating a collection
coll = db['example']
#Inserting document into a collection
data = [
{"_id": "1001", "name": "Ram", "age": "26", "city": "Hyderabad"},
{"_id": "1002", "name": "Rahim", "age": "27", "city": "Bangalore"},
{"_id": "1003", "name": "Robert", "age": "28", "city": "Mumbai"},
{"_id": "1004", "name": "Romeo", "age": "25", "city": "Pune"},
{"_id": "1005", "name": "Sarmista", "age": "23", "city": "Delhi"},
{"_id": "1006", "name": "Rasajna", "age": "26", "city": "Chennai"}
]
res = coll.insert_many(data)
print("Data inserted ......")
#Deleting multiple documents
coll.delete_many({"age":{"$gt":"26"}})
#Retrieving all the records using the find() method
print("Documents in the collection after update operation: ")
for doc2 in coll.find():
print(doc2)
산출
Data inserted ......
Documents in the collection after update operation:
{'_id': '1001', 'name': 'Ram', 'age': '26', 'city': 'Hyderabad'}
{'_id': '1004', 'name': 'Romeo', 'age': '25', 'city': 'Pune'}
{'_id': '1005', 'name': 'Sarmista', 'age': '23', 'city': 'Delhi'}
{'_id': '1006', 'name': 'Rasajna', 'age': '26', 'city': 'Chennai'}
쿼리를 전달하지 않고 delete_many () 메서드를 호출하면이 메서드는 컬렉션의 모든 문서를 삭제합니다.
coll.delete_many({})