找到 1349 篇文章 关于 MongoDB

即使某些值为 null,如何实现 MongoDB $concatArrays?

Nishtha Thakur
更新于 2019-07-30 22:30:26

257 次浏览

为此使用聚合框架以及 $ifNull 运算符。聚合中的 $concatArrays 用于连接数组。让我们首先创建一个包含文档的集合 ->db.concatenateArraysDemo.insertOne({"FirstSemesterSubjects": ["MongoDB", "MySQL", "Java"], "SecondSemesterSubjects":["C", "C++", ]}); {    "acknowledged" : true,    "insertedId" : ObjectId("5cd687707924bb85b3f4895c") } > db.concatenateArraysDemo.insertOne({"FirstSemesterSubjects":["C#", "Ruby", "Python"]}); {    "acknowledged" : true,    "insertedId" : ObjectId("5cd687927924bb85b3f4895d") } >db.concatenateArraysDemo.insertOne({"FirstSemesterSubjects":["HTML", "CSS", "Javascript"], "SecondSemesterSubjects":["CSS", "Javascript"]}); {    "acknowledged" : true,    "insertedId" : ObjectId("5cd687bb7924bb85b3f4895e") }以下是使用 find() 方法显示集合中所有文档的查询 -> db.concatenateArraysDemo.find().pretty();这将产生以下输出 -{    "_id" : ObjectId("5cd687707924bb85b3f4895c"), ... 阅读更多

MongoDB 查询检查数组属性中的值?

Smita Kapse
更新于 2019-07-30 22:30:26

2K+ 次浏览

您可以使用 $in 运算符来检查值是否在数组中。让我们首先创建一个包含文档的集合 -> db.valueInArrayDemo.insertOne({"UserName":"John", "UserMessage":["Hi", "Hello", "Bye"]}); {    "acknowledged" : true,    "insertedId" : ObjectId("5cd684cf7924bb85b3f48959") } > db.valueInArrayDemo.insertOne({"UserName":"Larry", "UserMessage":["Thank You", "Amazing", "Nice"]}); {    "acknowledged" : true,    "insertedId" : ObjectId("5cd684d27924bb85b3f4895a") } >db.valueInArrayDemo.insertOne({"UserName":"Carol", "UserMessage":["Awesome", "Bye", "Cool"]}); {    "acknowledged" : true,    "insertedId" : ObjectId("5cd684d87924bb85b3f4895b") }以下是使用 find() 方法显示集合中所有文档的查询 -> db.valueInArrayDemo.find().pretty();这将产生以下输出 -{    "_id" : ObjectId("5cd684cf7924bb85b3f48959"),    "UserName" : "John",    "UserMessage" : [       "Hi",       "Hello",     ... 阅读更多

如何在 MongoDB 中将元素推送到现有数组中?

Anvi Jain
更新于 2019-07-30 22:30:26

316 次浏览

要将元素推送到现有数组中,请使用 $addToSet 运算符以及 update()。让我们首先创建一个包含文档的集合 -> db.pushElements.insertOne({"Comments":["Good", "Awesome", "Nice"]}); {    "acknowledged" : true,    "insertedId" : ObjectId("5cd682597924bb85b3f48953") }以下是使用 find() 方法显示集合中所有文档的查询 -> db.pushElements.find().pretty();这将产生以下输出 -{    "_id" : ObjectId("5cd682597924bb85b3f48953"),    "Comments" : [       "Good",       "Awesome",       "Nice"    ] }以下是将元素推送到 MongoDB 中现有数组的查询 -> db.pushElements.update(    {_id:ObjectId("5cd682597924bb85b3f48953")},    { ... 阅读更多

如何在 MongoDB shell 中打印文档值?

Nishtha Thakur
更新于 2019-07-30 22:30:26

1K+ 次浏览

为此,请使用 forEach() 的概念。让我们首先创建一个包含文档的集合 -> db.printDocuementValueDemo.insertOne({"InstructorName":"John Smith"}); {    "acknowledged" : true,    "insertedId" : ObjectId("5cd6804f7924bb85b3f48950") } > db.printDocuementValueDemo.insertOne({"InstructorName":"Sam Williams"}); {    "acknowledged" : true,    "insertedId" : ObjectId("5cd680577924bb85b3f48951") } > db.printDocuementValueDemo.insertOne({"InstructorName":"David Miller"}); {    "acknowledged" : true,    "insertedId" : ObjectId("5cd680637924bb85b3f48952") }以下是使用 find() 方法显示集合中所有文档的查询 -> db.printDocuementValueDemo.find().pretty();这将产生以下输出 -{    "_id" : ObjectId("5cd6804f7924bb85b3f48950"),    "InstructorName" : "John Smith" } {    "_id" : ObjectId("5cd680577924bb85b3f48951"),    "InstructorName" : "Sam Williams" } ... 阅读更多

如何在 MongoDB 中从字符串值中删除空格(开头和结尾)?

Smita Kapse
更新于 2019-07-30 22:30:26

480 次浏览

为此,您需要使用 forEach() 编写一些代码。让我们首先创建一个包含文档的集合 -> db.removingWhiteSpaceDemo.insertOne({"Title":" Introduction to java "}); {    "acknowledged" : true,    "insertedId" : ObjectId("5cd66f387924bb85b3f4894c") }以下是使用 find() 方法显示集合中所有文档的查询 -> db.removingWhiteSpaceDemo.find();这将产生以下输出 -{ "_id" : ObjectId("5cd66f387924bb85b3f4894c"), "Title" : " Introduction to java " }以下是删除空格(开头和结尾)的查询 -> db.removingWhiteSpaceDemo.find({}, {"Title": 1 }).forEach(function(myDocument) {    myDocument.Title = myDocument.Title.trim();    db.removingWhiteSpaceDemo.update(       { "_id": myDocument._id ... 阅读更多

如何在 MongoDB find 查询中添加具有静态值的字段?

Anvi Jain
更新于 2019-07-30 22:30:26

493 次浏览

您可以使用 $literal 运算符以及聚合框架。让我们首先创建一个包含文档的集合 -> db.fieldWithStaticValue.insertOne({"Name":"Larry", "Age":24}); {    "acknowledged" : true,    "insertedId" : ObjectId("5cd6554c7924bb85b3f48948") } > db.fieldWithStaticValue.insertOne({"Name":"Chris", "Age":23}); {    "acknowledged" : true,    "insertedId" : ObjectId("5cd655567924bb85b3f48949") } > db.fieldWithStaticValue.insertOne({"Name":"David", "Age":26}); {    "acknowledged" : true,    "insertedId" : ObjectId("5cd655607924bb85b3f4894a") }以下是使用 find() 方法显示集合中所有文档的查询 -> db.fieldWithStaticValue.find();这将产生以下输出 -{ "_id" : ObjectId("5cd6554c7924bb85b3f48948"), "Name" : "Larry", "Age" : 24 } { "_id" : ObjectId("5cd655567924bb85b3f48949"), "Name" : "Chris", "Age" : 23 ... 阅读更多

如何根据名称列表获取 MongoDB 查询结果中的标签计数?

Nishtha Thakur
更新于 2019-07-30 22:30:26

126 次浏览

您可以使用 $in 运算符。让我们首先创建一个包含文档的集合 -> db.tagCountDemo.insertOne({"ListOfNames":["John", "Sam", "Carol"]}); {    "acknowledged" : true,    "insertedId" : ObjectId("5cd64b387924bb85b3f48944") } > db.tagCountDemo.insertOne({"ListOfNames":["Bob", "David", "John"]}); {    "acknowledged" : true,    "insertedId" : ObjectId("5cd64b4b7924bb85b3f48945") } > db.tagCountDemo.insertOne({"ListOfNames":["Mike", "Robert", "Chris"]}); {    "acknowledged" : true,    "insertedId" : ObjectId("5cd64b5d7924bb85b3f48946") } > db.tagCountDemo.insertOne({"ListOfNames":["James", "Carol", "Jace"]}); {    "acknowledged" : true,    "insertedId" : ObjectId("5cd64b717924bb85b3f48947") }以下是使用 find() 方法显示集合中所有文档的查询 -> db.tagCountDemo.find().pretty();这将产生以下输出 -{    "_id" : ObjectId("5cd64b387924bb85b3f48944"),    "ListOfNames" : ... 阅读更多

MongoDB 按子文档匹配排序?

Smita Kapse
更新于 2019-07-30 22:30:26

272 次浏览

要按子文档匹配排序,您可以使用聚合框架。让我们首先创建一个包含文档的集合 -> db.sortBySubDocumentsDemo.insertOne(    {       "StudentName": "Chris",       "StudentDetails": [          {             "Age":21,             "StudentScore":91          },          {             "Age":22,             "StudentScore":99          },          {             "Age":21,             "StudentScore":93   ... 阅读更多

获取 MongoDB 中在今天之前过期的文档?

Smita Kapse
更新于 2019-07-30 22:30:26

278 次浏览

您可以将 $lte 运算符与 Date() 一起使用来实现这一点。 让我们首先创建一个包含文档的集合。 在这里,我们设置了日期为 2019-05-11,这是当前日期 -> db.getDocumentsExpiredDemo.insertOne({"ArrivalDate":new ISODate("2019-05-11")}); {    "acknowledged" : true,    "insertedId" : ObjectId("5cd563b17924bb85b3f4893b") } > db.getDocumentsExpiredDemo.insertOne({"ArrivalDate":new ISODate("2019-01-01")}); {    "acknowledged" : true,    "insertedId" : ObjectId("5cd563bf7924bb85b3f4893c") } > db.getDocumentsExpiredDemo.insertOne({"ArrivalDate":new ISODate("2019-05-10")}); {    "acknowledged" : true,    "insertedId" : ObjectId("5cd563ca7924bb85b3f4893d") } > db.getDocumentsExpiredDemo.insertOne({"ArrivalDate":new ISODate("2019-02-01")}); {    "acknowledged" : true,    "insertedId" : ObjectId("5cd563e77924bb85b3f4893e") }以下是使用 find() 方法显示集合中所有文档的查询 -> db.getDocumentsExpiredDemo.find().pretty();这 ... 阅读更多

如何根据变量索引更新 MongoDB 文档中的数组?

Anvi Jain
更新于 2019-07-30 22:30:26

315 次浏览

要根据变量索引更新 MongoDB 文档中的数组,请使用以下语法。 这里,yourIndexValue 是索引值,yourIndexVariableName 是索引的变量名称 -var yourIndexVariableName= yourIndexValue, anyVariableName= { "$set": {} }; yourVariableName["$set"]["yourFieldName."+yourIndexVariableName] = "yourValue"; db.yourCollectionName.update({ "_id":  yourObjectId}, yourVariableName);让我们首先创建一个包含文档的集合 -> db.updateByVariableDemo.insertOne({"StudentSubjects":["MySQL", "Java", "SQL Server", "PL/SQL"]}); {    "acknowledged" : true,    "insertedId" : ObjectId("5cd553c37924bb85b3f4893a") }以下是使用 find() 方法显示集合中所有文档的查询 -> db.updateByVariableDemo.find().pretty();这将产生以下输出 -{    "_id" : ObjectId("5cd553c37924bb85b3f4893a"),    "StudentSubjects" : [       ... 阅读更多

广告