MongoDB 刪除文檔

來源:互聯網
上載者:User

    MongoDB remove()函數是用來移除集合中的資料。

    MongoDB資料更新可以使用update()函數。在執行remove()函數前先執行find()命令來判斷執行的條件是否正確,這是一個比較好的習慣。

文法

   remove() 方法的基本文法格式如下所示:

db.collection.remove(   <query>,   <justOne>)

   如果你的MongoDB是2.6版本以後的,文法格式如下:

db.collection.remove(   <query>,   {     justOne: <boolean>,     writeConcern: <document>   })

參數說明:

   ·query:(可選)刪除的檔案的條件。

   ·justOne:(可選)如果設為true或1,則只刪除一個文檔

   ·writeConcern:(可選)拋出異常的層級。


執行個體

   以下文檔我們執行兩次插入操作:

>db.col.insert({title: 'MongoDB 教程',     description: 'MongoDB 是一個 Nosql 資料庫',    by: '菜鳥教程',    url: 'http://www.runoob.com',    tags: ['mongodb', 'database', 'NoSQL'],    likes: 100})

   使用 find()函數查詢資料:

> db.col.find(){ "_id" : ObjectId("56066169ade2f21f36b03137"), "title" : "MongoDB 教程", "description" : "MongoDB 是一個 Nosql 資料庫", "by" : "菜鳥教程", "url" : "http://www.runoob.com", "tags" : [ "mongodb", "database", "NoSQL" ], "likes" : 100 }{ "_id" : ObjectId("5606616dade2f21f36b03138"), "title" : "MongoDB 教程", "description" : "MongoDB 是一個 Nosql 資料庫", "by" : "菜鳥教程", "url" : "http://www.runoob.com", "tags" : [ "mongodb", "database", "NoSQL" ], "likes" : 100 }

   接下來我們移除tilte為"MongoDB 教程"的文檔:

>db.col.remove({'title':'MongoDB 教程'})WriteResult({ "nRemoved" : 2 })           # 刪除了兩條資料>db.col.find()……                                        # 沒有資料

  如果你只想刪除第一條找到的記錄可以設定justOne為1,如下所示:

>db.COLLECTION_NAME.remove(DELETION_CRITERIA,1)

   如果你想刪除所有資料,可以使用以下方式:

>db.col.remove({})>db.col.find()>

筆記列表

   remove() 方法已經過時了,現在官方推薦使用 deleteOne() 和 deleteMany() 方法。

   如刪除集合下全部文檔:

db.inventory.deleteMany({})

   刪除 status 等於 A 的全部文檔:

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.