找到关于 MongoDB 的 1349 篇文章

MongoDB 中“现在”和给定日期之间的区别?

AmitDiwan
更新于 2020-06-30 07:42:37

1K+ 次浏览

要获取 MongoDB 中日期之间的差值,请使用 aggregate()。让我们创建一个包含文档的集合 -> db.demo734.insertOne({GivenDate:new ISODate("2020-01-10")}); {    "acknowledged" : true,    "insertedId" : ObjectId("5ead4f1a57bb72a10bcf064e") } > db.demo734.insertOne({GivenDate:new ISODate("2020-02-20")}); {    "acknowledged" : true,    "insertedId" : ObjectId("5ead4f2157bb72a10bcf064f") } > db.demo734.insertOne({GivenDate:new ISODate("2010-12-01")}); {    "acknowledged" : true,    "insertedId" : ObjectId("5ead4f2b57bb72a10bcf0650") } > db.demo734.insertOne({GivenDate:new ISODate("2020-05-01")}); {    "acknowledged" : true,    "insertedId" : ObjectId("5ead506f57bb72a10bcf0651") }使用 find() 方法显示集合中的所有文档 -> db.demo734.find();这将产生以下输出 -{ "_id" : ObjectId("5ead4f1a57bb72a10bcf064e"), "GivenDate" : ISODate("2020-01-10T00:00:00Z") } { "_id" : ObjectId("5ead4f2157bb72a10bcf064f"), "GivenDate" ... 阅读更多

如何使用聚合管道将嵌入式文档数组移动到父级并更改键值对?

AmitDiwan
更新于 2020-05-15 09:26:12

973 次浏览

在 MongoDB 聚合中使用 $replaceRoot。$replaceRoot 将输入文档替换为指定的文档。此操作将替换输入文档中的所有现有字段,包括 _id 字段。让我们创建一个包含文档的集合 -> db.demo733.insertOne( ...    { ...       "SubjectDetails": ...       [ ...          { ...             SubjectName:"MongoDB", ...             "Marks":85 ...          }, ...          { ...             SubjectName:"MySQL", ...             ... 阅读更多

如何在现有的 MongoDB 文档中添加具有特定数据类型(列表、对象)的字段?

AmitDiwan
更新于 2020-05-15 09:23:53

421 次浏览

您可以使用 $set。让我们创建一个包含文档的集合 -> db.demo732.insertOne({_id:1, Language:"English"}); { "acknowledged" : true, "insertedId" : 1 } > db.demo732.insertOne({_id:2, Language:"Hindi"}); { "acknowledged" : true, "insertedId" : 2 }使用 find() 方法显示集合中的所有文档 -> db.demo732.find();这将产生以下输出 -{ "_id" : 1, "Language" : "English" } { "_id" : 2, "Language" : "Hindi" }以下是向现有的 MongoDB 文档中添加具有特定数据类型(列表、对象)的字段的查询 -> db.demo732.update({_id:1}, ... { $set:{details:{'subjectName':"MongoDB"}, studentDetails:[{Name:"David"}, {CountryName:"US"}]}}) WriteResult({ "nMatched" : 1, "nUpserted" : 0, "nModified" : ... 阅读更多

如何使用 MongoDB 中的 $project 显示数组中的特定字段并忽略其他字段?

AmitDiwan
更新于 2020-05-15 09:22:15

780 次浏览

要显示特定字段,请使用 $project 和 $unwind。要忽略字段,请设置为 0。让我们创建一个包含文档的集合 -> db.demo731.insertOne({ "ProductInformation": [ { ProductId:"Product-1", ProductPrice:80 }, { ProductId:"Product-2", ProductPrice:45 }, { ProductId:"Product-3", ProductPrice:50 } ] } ); {    "acknowledged" : true,    "insertedId" : ObjectId("5eac5efd56e85a39df5f6341") }使用 find() 方法显示集合中的所有文档 -> db.demo731.find();这将产生以下输出 -{ "_id" : ObjectId("5eac5efd56e85a39df5f6341"), "ProductInformation" : [ { "ProductId" : "Product-1", "ProductPrice" : 80 }, { "ProductId" : "Product-2", "ProductPrice" : 45 }, { "ProductId" : "Product-3", "ProductPrice" : ... 阅读更多

匹配字段值大于特定数字的 MongoDB 文档并获取它们?

AmitDiwan
更新于 2020-05-15 09:20:25

438 次浏览

要匹配,请在 MongoDB 中使用 $match。对于大于特定数字的值,请使用 $gt。让我们创建一个包含文档的集合 -> db.demo730.insertOne({"Name" : "Chris", "Marks" : 33 }); {    "acknowledged" : true,    "insertedId" : ObjectId("5eac54cd56e85a39df5f6339") } > db.demo730.insertOne({ "Name" : "David", "Marks" : 89}); {    "acknowledged" : true,    "insertedId" : ObjectId("5eac54cd56e85a39df5f633a") } > db.demo730.insertOne({ "Name" : "Chris", "Marks" : 45 }); {    "acknowledged" : true,    "insertedId" : ObjectId("5eac54ce56e85a39df5f633b") }使用 find() 方法显示集合中的所有文档 -> db.demo730.find();这将产生以下输出 -{ "_id" : ObjectId("5eac54cd56e85a39df5f6339"), "Name" ... 阅读更多

MongoDB 中的大量插入

AmitDiwan
更新于 2020-05-15 09:18:39

88 次浏览

对于批量插入,请在 MongoDB 中使用 insertMany() 的概念。insertMany() 将多个文档插入集合中。让我们创建一个包含文档的集合 -> db.demo729.insertMany( [ ...    { BankName:"HDFC Bank", cardType:"Credit", "CustomerName":[{Name:"Chris", Age:25}]}, ...    { BankName:"ICICI Bank", cardType:"Debit", "CustomerName":[{Name:"Bob", Age:22}]}, ...    { BankName:"Kotak Bank", cardType:"Debit", "CustomerName":[{Name:"David", Age:23}]} ... ] ); {    "acknowledged" : true,    "insertedIds" : [       ObjectId("5eac510d56e85a39df5f6333"),       ObjectId("5eac510d56e85a39df5f6334"),       ObjectId("5eac510d56e85a39df5f6335")    ] }使用 find() 方法显示集合中的所有文档 -> db.demo729.find().pretty();这将产生以下输出 -{    "_id" : ... 阅读更多

查找价格低于特定值的 MongoDB 记录

AmitDiwan
更新于 2020-05-15 09:16:20

332 次浏览

要检查价格低于特定值的记录,请使用 $lt。让我们创建一个包含文档的集合 -> db.demo728.insertOne({Price:75}); {    "acknowledged" : true,    "insertedId" : ObjectId("5eab413c43417811278f589b") } > db.demo728.insertOne({Price:59}); {    "acknowledged" : true,    "insertedId" : ObjectId("5eab414043417811278f589c") } > db.demo728.insertOne({Price:79}); {    "acknowledged" : true,    "insertedId" : ObjectId("5eab414543417811278f589d") } > db.demo728.insertOne({Price:89}); {    "acknowledged" : true,    "insertedId" : ObjectId("5eab414843417811278f589e") }使用 find() 方法显示集合中的所有文档 -> db.demo728.find();这将产生以下输出 -{ "_id" : ObjectId("5eab413c43417811278f589b"), "Price" : 75 } { "_id" : ObjectId("5eab414043417811278f589c"), "Price" : ... 阅读更多

MongoDB 查询,用于在字段值中搜索类似“@email”的字符串

AmitDiwan
更新于 2020-05-15 09:14:43

1K+ 次浏览

使用 MongoDB find() 搜索电子邮件字符串。让我们创建一个包含文档的集合 -> db.demo727.insertOne({UserId:"[email protected]"}); {    "acknowledged" : true,    "insertedId" : ObjectId("5eab375f43417811278f5898") } > db.demo727.insertOne({UserId:"[email protected]"}); {    "acknowledged" : true,    "insertedId" : ObjectId("5eab376043417811278f5899") } > db.demo727.insertOne({UserId:"[email protected]"}); {    "acknowledged" : true,    "insertedId" : ObjectId("5eab376143417811278f589a") }使用 find() 方法显示集合中的所有文档 -> db.demo727.find();这将产生以下输出 -{ "_id" : ObjectId("5eab375f43417811278f5898"), "UserId" : "[email protected]" } { "_id" : ObjectId("5eab376043417811278f5899"), "UserId" : "[email protected]" } { "_id" : ObjectId("5eab376143417811278f589a"), "UserId" : "[email protected]" }以下是搜索类似 @email 的查询... 阅读更多

如何根据特定字段的值计算数组中的文档数量?

AmitDiwan
更新于 2020-05-15 09:12:54

114 次浏览

对于这种匹配和计数,请在 MongoDB 中使用 $match。让我们创建一个包含文档的集合 -> db.demo726.insertOne( ...    { ...       id:101, ...       "details": [ ...          { ...             Name:"Chris" ... ...          }, ...          { ...             Name:"Chris" ... ...          }, ...          { ...             Name:"Bob" ...          } ...       ] ... ... 阅读更多

为 MongoDB 中的嵌套数组设置过滤条件

AmitDiwan
更新于 2020-05-15 09:10:01

1K+ 次浏览

要设置过滤条件,请在 MongoDB aggregate() 中使用 $filter 和 $cond。$filter 根据指定的条件选择数组的子集以返回。让我们创建一个包含文档的集合 -> db.demo725.insertOne( ... { ... "details": { ... "userMessages": [ { ... "Messages": [ { "Message": "Hello" }, { "Message": "How" }, ... 阅读更多

广告