MongoDB 插入文檔

來源:互聯網
上載者:User

MongoDB 插入文檔

文檔的資料結構和JSON基本一樣。

所有儲存在集合中的資料都是BSON格式。

BSON是一種類json的一種二進位形式的儲存格式,簡稱Binary JSON。

插入文檔

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 的資料。

更多MongoDB相關教程見以下內容:

CentOS 編譯安裝 MongoDB與mongoDB的php擴充

CentOS 6 使用 yum 安裝MongoDB及伺服器端配置

Ubuntu 13.04下安裝MongoDB2.4.3

MongoDB入門必讀(概念與實戰並重)

Ubunu 14.04下MongoDB的安裝指南

《MongoDB 權威指南》(MongoDB: The Definitive Guide)英文文字版[PDF]

Nagios監控MongoDB分區叢集服務實戰

基於CentOS 6.5作業系統搭建MongoDB服務

MongoDB 的詳細介紹:請點這裡
MongoDB 的:請點這裡

本文永久更新連結地址:

相關文章

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.