mongodb 學習筆記六 Updating

來源:互聯網
上載者:User

英文原文:http://www.mongodb.org/display/DOCS/Updating

mongodb支援原子的更新操作,對文檔進行更新替換舊的文檔或者更新文檔中某個欄位。

update操作用新的文檔對象更新匹配的舊文檔,如果僅希望更新文檔中某些欄位的值可以使用 “$"操作符,像後面提到的。

MongoDB shell syntax for update():

db.collection.update( criteria, objNew, upsert,
multi )

Arguments:

  • criteria - query which selects the record to update;
  • objNew - updated object or $ operators (e.g., $inc) which manipulate the object
  • upsert - if this should be an "upsert" operation; that is, if the record(s) do not exist, insert one.
    Upsert only inserts a single document.
  • multi - if all documents matching criteria should be updated

注意:一般情況下只更新匹配的第一個文檔對象,如果想更新所有的匹配的文檔對象,multi 選項必須為真。

           upsert 選項為真的時候,做更新操作或插入操作,即如果存在則更新,否則直接插入文檔。

save()操作相當於update()操作在選項upsert為true的情況下,如下:

// x is some JSON style objectdb.mycollection.save(x); // updates if exists; inserts if new

呵呵,今天就到這了,有時間再補充

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.