您好,登錄后才能下訂單哦!
先看集合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 >
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。