Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to get started with MongoDB

2025-01-18 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >

Share

Shulou(Shulou.com)05/31 Report--

Today, I will talk to you about how to get started with MongoDB. Many people may not know much about it. In order to make you understand better, the editor has summarized the following contents for you. I hope you can get something from this article.

NoSQL non-relational database

MongoDB is a database based on distributed file storage. Written in C++ language. Designed to provide scalable high-performance data storage solutions for WEB applications.

MongoDB is a product between relational database and non-relational database, which is the most functional and most like relational database in non-relational database.

MongoDB stores the data as a document, and the data structure consists of key-value (key= > value) pairs. MongoDB documents are similar to JSON objects. Field values can contain other documents, arrays, and document arrays.

Configuration step

1: under the installation path, create a db folder under data to store data.

2: then perform the next two steps

3: open a command line window under the bin file and you can connect to the MongoDB database.

Open a command line window under the bin folder, and enter the command to export the database collection as a CSV file:

Mongoexport-d mydb-c test-- csv-f name,sex,grade-o test.csv

-d: database

-c: table data

-f: indicates the field to be exported

Python writes data to MongoDB:

Import pymongoclient = pymongo.MongoClient ('localhost',27017) # Connect to database mydb = client [' mydb'] # create database test = mydb ['test'] # create table test.insert_one ({' name':' Tao Lilan', 'sex':' girls', 'grade':520}) # write data collection

The database data is shown in the figure:

After reading the above, do you have any further understanding of how to get started with MongoDB? If you want to know more knowledge or related content, please follow the industry information channel, thank you for your support.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Database

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report