MongoDB Insert Document

Source: Internet
Author: User
Tags mongodb tutorial

The data structure of the document is basically the same as JSON.

All data stored in the collection is in the Bson format.

Bson is a binary form of a class JSON storage format, referred to as binary JSON.

Insert Document

MongoDB uses the Insert () or Save () method to insert a document into the collection, with the following syntax:

Db. Collection_name.insert (document)
Instance

The following documents can be stored in the Col collection of the MongoDB w3cschool.cn database:

>db.col.insert ({title: ' MongoDB Tutorial ',     Description: ' MongoDB is a Nosql database ' by    : ' W3cschool ',    URL: ' http ://www.w3cschool.cn ',    Tags: [' mongodb ', ' database ', ' NoSQL '],    likes:100})

In the above example, Col is our collection name, the previous section we have created, and if the collection is not in that database, MongoDB will automatically create the set and insert the document.

To view a document that has been inserted:

We can also define the data as a variable, as follows:

> document= ({title: ' MongoDB Tutorial ',     Description: ' MongoDB is a Nosql database ' by    : ' W3cschool ',    URL: '/http. www.w3cschool.cn ',    Tags: [' mongodb ', ' database ', ' NoSQL '],    likes:100});

After execution, the results are displayed as follows:

{        "title": "MongoDB Tutorial",        "description": "MongoDB is a Nosql database",        "by": "W3cschool",        "url": "http://www . w3cschool.cn ",        " tags ": [                " MongoDB ",                " database ",                " NoSQL "        ],        " likes ": 100}

To perform an insert operation:

Insert document You can also use the Db.col.save command. If you do not specify the _id field, the Save () method is similar to the Insert () method. If the _id field is specified, the data for the _id is updated.

MongoDB Insert Document

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

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.