[MongoDB] Insert, find -- 1

MongoDB is JSON Document:

 

How to start MongoDB client:

mongod //start the server

mongo // start the cli

 

How to restore a database:

mongorestore can create a new database or add data to an existing database.

If you restore to an existing database, mongorestore will only insert into the existing database, and does not perform updates of any kind. If existing documents have the same value _id field in the target database and collection, mongorestore will not overwrite those documents.

Read More: http://docs.mongodb.org/manual/reference/program/mongorestore/

Download the resoure: http://poeticoding.com/downloads/mongodb/mongodb_poeticoding_blog.zip

 

How to import json file into database:

mongoimport --db simple --collection people --jsonArray data.json

Read More: http://docs.mongodb.org/manual/reference/program/mongoimport/

 

Simple commands:

//show all the database:
show dbs;

//show all collections:
show collections;

//create or use one database
use <database_name>

 

Insert:

The data you have:

复制代码
{
    title: "My first blog post",
    author:{
        firstName: "YY",
        lastName: "KK",
        email: "yy.kk@yykk.com"
    },
    tags: ["coding", "database"],
    pubData: new Date
}
复制代码

Cmd:

复制代码
//insert into the posts collection
db.posts.insert({
    title: "My first blog post",
    author:{
        firstName: "YY",
        lastName: "KK",
        email: "yy.kk@yykk.com"
    },
    tags: ["coding", "database"],
    pubData: new Date
});
复制代码

 

Note: _id should be unique.

 

Find:

//get the oldest inserted data
db.posts.findOne();
//get all the data
db.posts.find();
db.posts.find().count(); //count the amount
db.posts.find().pretty(); //make output looks pretty
//Find according to the criteria

//Find the title which is AngularJS
db.posts.find({title: "AngularJS"}); 

//Find the title whcih contains AngularJS
db.posts.find({title: /AngularJS/i}); 
//Find title contains 'ios', only show title, not _id in the result
db.posts.find({title: /ios/i}, {title:1, _id: 0});

 

Javascript code for this: (something should looks like)

    Posts.find({title: /ios/i}).select("title").exec(function(err, data) {
        response.json(200, data);
    })

 

posted @   Zhentiw  阅读(389)  评论(0编辑  收藏  举报
(评论功能已被禁用)
编辑推荐:
· SQL Server 2025 AI相关能力初探
· Linux系列:如何用 C#调用 C方法造成内存泄露
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
阅读排行:
· 阿里最新开源QwQ-32B,效果媲美deepseek-r1满血版,部署成本又又又降低了!
· Manus重磅发布:全球首款通用AI代理技术深度解析与实战指南
· 开源Multi-agent AI智能体框架aevatar.ai,欢迎大家贡献代码
· 被坑几百块钱后,我竟然真的恢复了删除的微信聊天记录!
· AI技术革命,工作效率10个最佳AI工具
点击右上角即可分享
微信分享提示