MongoDB 插入文檔

來源:互聯網
上載者:User

   MongoDB 使用 insert() 或 save() 方法向集合中插入文檔,文法如下:

db.COLLECTION_NAME.insert(document)
執行個體

   以下文檔可以儲存在 MongoDB 的 runoob 資料庫的 col 集合中:

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

   以上執行個體中 col 是我們的集合名,如果該集合不在該資料庫中,MongoDB會自動建立該集合并插入文檔。

   查看已插入文檔:

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

   我們也可以將資料定義為一個變數,如下所示:

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

   執行後顯示結果如下:

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

    執行插入操作:

> db.col.insert(document)WriteResult({ "nInserted" : 1 })> 
   插入文檔你也可以使用 db.col.save(document) 命令。如果不指定 _id 欄位 save() 方法類似於 insert() 方法。如果指定 _id 欄位,則會更新該 _id 的資料。


筆記列表

    3.2版本後還有以下幾種文法可用於插入文檔:

    ·db.collection.insertOne():向指定集合中插入一條文檔資料

    ·db.collection.insertMany():向指定集合中插入多條文檔資料

#  插入單條資料> var document = db.collection.insertOne({"a": 3})> document{        "acknowledged" : true,        "insertedId" : ObjectId("571a218011a82a1d94c02333")}#  插入多條資料> var res = db.collection.insertMany([{"b": 3},
相關文章

聯繫我們

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