db.wu"/>
我的编程空间,编程开发者的网络收藏夹
学习永远不晚

How to insert data to mongodb on centos 7

短信预约 信息系统项目管理师 报名、考试、查分时间动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

How to insert data to mongodb on centos 7

How to insert data to mongodb on centos 7

insert & read data to mongodb

> use lanzhou
switched to db lanzhou
> db.wuwei.save( { a: 1 } )
WriteResult({ "nInserted" : 1 })
> db.wuwei.find()
{ "_id" : ObjectId("5f0faebe2d6c5971111129df"), "a" : 1 }
> 

e.g.

> db.inventory.insertOne(
...    { item: "canvas", qty: 100, tags: ["cotton"], size: { h: 28, w: 35.5, uom: "cm" } }
... )
{
        "acknowledged" : true,
        "insertedId" : ObjectId("5f0fb0712d6c5971111129e0")
}
> db.inventory.find()
{ "_id" : ObjectId("5f0fb0712d6c5971111129e0"), "item" : "canvas", "qty" : 100, "tags" : [ "cotton" ], "size" : { "h" : 28, "w" : 35.5, "uom" : "cm" } }
> db.inventory.find( { item: "canvas" } )
{ "_id" : ObjectId("5f0fb0712d6c5971111129e0"), "item" : "canvas", "qty" : 100, "tags" : [ "cotton" ], "size" : { "h" : 28, "w" : 35.5, "uom" : "cm" } }
> 
> 
> db.inventory.insertMany([
...    { item: "journal", qty: 25, tags: ["blank", "red"], size: { h: 14, w: 21, uom: "cm" } },
...    { item: "mat", qty: 85, tags: ["gray"], size: { h: 27.9, w: 35.5, uom: "cm" } },
...    { item: "mousepad", qty: 25, tags: ["gel", "blue"], size: { h: 19, w: 22.85, uom: "cm" } }
... ])
{
        "acknowledged" : true,
        "insertedIds" : [
                ObjectId("5f0fb1002d6c5971111129e1"),
                ObjectId("5f0fb1002d6c5971111129e2"),
                ObjectId("5f0fb1002d6c5971111129e3")
        ]
}
> db.inventory.find()
{ "_id" : ObjectId("5f0fb0712d6c5971111129e0"), "item" : "canvas", "qty" : 100, "tags" : [ "cotton" ], "size" : { "h" : 28, "w" : 35.5, "uom" : "cm" } }
{ "_id" : ObjectId("5f0fb1002d6c5971111129e1"), "item" : "journal", "qty" : 25, "tags" : [ "blank", "red" ], "size" : { "h" : 14, "w" : 21, "uom" : "cm" } }
{ "_id" : ObjectId("5f0fb1002d6c5971111129e2"), "item" : "mat", "qty" : 85, "tags" : [ "gray" ], "size" : { "h" : 27.9, "w" : 35.5, "uom" : "cm" } }
{ "_id" : ObjectId("5f0fb1002d6c5971111129e3"), "item" : "mousepad", "qty" : 25, "tags" : [ "gel", "blue" ], "size" : { "h" : 19, "w" : 22.85, "uom" : "cm" } }
> db.inventory.find( { item: "mat" } )
{ "_id" : ObjectId("5f0fb1002d6c5971111129e2"), "item" : "mat", "qty" : 85, "tags" : [ "gray" ], "size" : { "h" : 27.9, "w" : 35.5, "uom" : "cm" } }
> db.inventory.find({item:"mat"})
{ "_id" : ObjectId("5f0fb1002d6c5971111129e2"), "item" : "mat", "qty" : 85, "tags" : [ "gray" ], "size" : { "h" : 27.9, "w" : 35.5, "uom" : "cm" } }
> db.inventory.find({})
{ "_id" : ObjectId("5f0fb0712d6c5971111129e0"), "item" : "canvas", "qty" : 100, "tags" : [ "cotton" ], "size" : { "h" : 28, "w" : 35.5, "uom" : "cm" } }
{ "_id" : ObjectId("5f0fb1002d6c5971111129e1"), "item" : "journal", "qty" : 25, "tags" : [ "blank", "red" ], "size" : { "h" : 14, "w" : 21, "uom" : "cm" } }
{ "_id" : ObjectId("5f0fb1002d6c5971111129e2"), "item" : "mat", "qty" : 85, "tags" : [ "gray" ], "size" : { "h" : 27.9, "w" : 35.5, "uom" : "cm" } }
{ "_id" : ObjectId("5f0fb1002d6c5971111129e3"), "item" : "mousepad", "qty" : 25, "tags" : [ "gel", "blue" ], "size" : { "h" : 19, "w" : 22.85, "uom" : "cm" } }
> db.inventory.insertOne(
...    { item: "canvas", qty: 100, tags: ["cotton"], size: { h: 28, w: 35.5, uom: "cm" } }
... )
{
	"acknowledged" : true,
	"insertedId" : ObjectId("5f0fb1f22d6c5971111129e4")
}
> db.inventory.find({})
{ "_id" : ObjectId("5f0fb0712d6c5971111129e0"), "item" : "canvas", "qty" : 100, "tags" : [ "cotton" ], "size" : { "h" : 28, "w" : 35.5, "uom" : "cm" } }
{ "_id" : ObjectId("5f0fb1002d6c5971111129e1"), "item" : "journal", "qty" : 25, "tags" : [ "blank", "red" ], "size" : { "h" : 14, "w" : 21, "uom" : "cm" } }
{ "_id" : ObjectId("5f0fb1002d6c5971111129e2"), "item" : "mat", "qty" : 85, "tags" : [ "gray" ], "size" : { "h" : 27.9, "w" : 35.5, "uom" : "cm" } }
{ "_id" : ObjectId("5f0fb1002d6c5971111129e3"), "item" : "mousepad", "qty" : 25, "tags" : [ "gel", "blue" ], "size" : { "h" : 19, "w" : 22.85, "uom" : "cm" } }
{ "_id" : ObjectId("5f0fb1f22d6c5971111129e4"), "item" : "canvas", "qty" : 100, "tags" : [ "cotton" ], "size" : { "h" : 28, "w" : 35.5, "uom" : "cm" } }
> 

delete data from mongodb

> db.collection.deleteMany()
2020-07-16T09:58:19.683+0800 E  QUERY    [js] uncaught exception: Error: find() requires query criteria :
Bulk/this.find@class="lazy" data-src/mongo/shell/bulk_api.js:796:23
DBCollection.prototype.deleteMany@class="lazy" data-src/mongo/shell/crud_api.js:420:20
@(shell):1:1
> db.inventory.deleteMany()
2020-07-16T09:58:54.991+0800 E  QUERY    [js] uncaught exception: Error: find() requires query criteria :
Bulk/this.find@class="lazy" data-src/mongo/shell/bulk_api.js:796:23
DBCollection.prototype.deleteMany@class="lazy" data-src/mongo/shell/crud_api.js:420:20
@(shell):1:1
> db.inventory.deleteMany({})
{ "acknowledged" : true, "deletedCount" : 10 }
> db.inventory.find()
> 

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

How to insert data to mongodb on centos 7

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

How to insert data to mongodb on centos 7

insert & read data to mongodb> use lanzhouswitched to db lanzhou> db.wuwei.save( { a: 1 } )WriteResult({ "nInserted" : 1 })> db.wu
How to insert data to mongodb on centos 7
2020-05-13

How to Install Oracle Database 12c on CentOS 7

How to Install Oracle Database 12c on CentOS 7 On this page Step 1 - Install required Packages Step 2 - Configure
How to Install Oracle Database 12c on CentOS 7
2016-06-03

how to export cvs data from mongodb on centos7

Install mongodb-org-tools[lwk@qwfys:~]$ sudo dnf install mongodb-org-tools[sudo] password for lwk: Last metadata expiration check:
how to export cvs data from mongodb on centos7
2014-12-03

How to connect to mongodb on centos7

sample[lwk@qwfys:~]$ mongo -u lanzhou mongodb://vm88.lan/lanzhouMongoDB shell version v4.2.8Enter password: connecting to: mongodb
How to connect to mongodb on centos7
2014-05-19

编程热搜

目录