欢迎光临
我们一直在努力

【MongoDB学习笔记7】深入MongoDB的删除(remove/drop)操作

先看集合post中文档信息:  

> db.post.find();    
{ "_id" : ObjectId("54a51cfd7f46906f81b7adcd"), "bar" : "baz" }    
{ "_id" : 0 }    
{ "_id" : 1 }    
{ "_id" : 2 }    
{ "_id" : 5, "test1" : 0 }    
{ "_id" : 4, "test2" : 2 }    
{ "_id" : 3, "test3" : 3 }    
{ "_id" : 6, "test5" : 5 }    
{ "_id" : 7, "test1" : 1 }    
{ "_id" : 8, "test1" : 1 }

删除指定的文档:  

> db.post.remove({"_id":5});    
WriteResult({ "nRemoved" : 1 })    
> db.post.find();    
{ "_id" : ObjectId("54a51cfd7f46906f81b7adcd"), "bar" : "baz" }    
{ "_id" : 0 }    
{ "_id" : 1 }    
{ "_id" : 2 }    
{ "_id" : 4, "test2" : 2 }    
{ "_id" : 3, "test3" : 3 }    
{ "_id" : 6, "test5" : 5 }    
{ "_id" : 7, "test1" : 1 }    
{ "_id" : 8, "test1" : 1 }

 

删除所有{“test1”:1}的文档:  

> db.post.remove({"test1":1});    
WriteResult({ "nRemoved" : 2 })    
> db.post.find();    
{ "_id" : ObjectId("54a51cfd7f46906f81b7adcd"), "bar" : "baz" }    
{ "_id" : 0 }    
{ "_id" : 1 }    
{ "_id" : 2 }    
{ "_id" : 4, "test2" : 2 }    
{ "_id" : 3, "test3" : 3 }    
{ "_id" : 6, "test5" : 5 }    
>

删除整个post集合:    

> db.post.drop()    
true    
> show collections    
system.indexes    
>

赞(0)
【声明】:本博客不参与任何交易,也非中介,仅记录个人感兴趣的主机测评结果和优惠活动,内容均不作直接、间接、法定、约定的保证。访问本博客请务必遵守有关互联网的相关法律、规定与规则。一旦您访问本博客,即表示您已经知晓并接受了此声明通告。