找到 1660 篇文章 关于大数据分析
513 次浏览
您可以使用聚合框架在 MongoDB 中按日期分组。让我们首先创建一个包含一些文档的集合。创建包含文档的集合的查询如下:> db.groupByDateDemo.insertOne({"UserLoginDateTime":new ISODate()}); { "acknowledged" : true, "insertedId" : ObjectId("5c6ee4df6fd07954a4890695") } > db.groupByDateDemo.insertOne({"UserLoginDateTime":new ISODate("2019-01-31 15:20:09.234Z")}); { "acknowledged" : true, "insertedId" : ObjectId("5c6ee51c6fd07954a4890696") } > db.groupByDateDemo.insertOne({"UserLoginDateTime":new ISODate("2017-04-21 16:12:13.240Z")}); { "acknowledged" : true, "insertedId" : ObjectId("5c6ee5336fd07954a4890697") } > db.groupByDateDemo.insertOne({"UserLoginDateTime":new ISODate("2016-05-25 19:11:21.130Z")}); { "acknowledged" : true, "insertedId" : ObjectId("5c6ee54b6fd07954a4890698") } > db.groupByDateDemo.insertOne({"UserLoginDateTime":new ISODate("2016-05-25 19:11:21.130Z")}); { "acknowledged" : true, "insertedId" : ObjectId("5c6ee8de6fd07954a4890699") } > ... 阅读更多
2K+ 次浏览
让我们以将字符串类型转换为整数为例。聚合不允许我们直接更改字段的类型;因此,您需要编写代码来转换字段的类型。首先,创建一个包含文档的集合。之后我们将获取每个字段的类型。创建包含文档的集合的查询如下>db.changeDataType.insertOne({"StudentName":"Larry", "StudentAge":23, "StudentZipCode":" 10001", "isProgrammer":false}); { "acknowledged" : true, "insertedId" : ObjectId("5c6ed4976fd07954a4890694") }使用 find() 方法显示集合中的所有文档。查询如下:> db.changeDataType.find().pretty();输出如下:{ ... 阅读更多
1K+ 次浏览
要在 MongoDB 中获取最后 N 条记录,您需要使用 limit()。语法如下:db.yourCollectionName.find().sort({$natural:-1}).limit(yourValue);为了理解上述语法,让我们创建一个包含文档的集合。创建包含文档的集合的查询如下:> db.getLastNRecordsDemo.insertOne({"EmployeeName":"Maxwell"}); { "acknowledged" : true, "insertedId" : ObjectId("5c6ecf3d6fd07954a4890689") } > db.getLastNRecordsDemo.insertOne({"EmployeeName":"Carol"}); { "acknowledged" : true, "insertedId" : ObjectId("5c6ecf496fd07954a489068a") } > db.getLastNRecordsDemo.insertOne({"EmployeeName":"Bob"}); { "acknowledged" : true, "insertedId" : ObjectId("5c6ecf4e6fd07954a489068b") } > db.getLastNRecordsDemo.insertOne({"EmployeeName":"Sam"}); { "acknowledged" : true, "insertedId" : ObjectId("5c6ecf546fd07954a489068c") } > db.getLastNRecordsDemo.insertOne({"EmployeeName":"Robert"}); { "acknowledged" : true, "insertedId" : ObjectId("5c6ecf596fd07954a489068d") } > db.getLastNRecordsDemo.insertOne({"EmployeeName":"Mike"}); ... 阅读更多
1K+ 次浏览
要在 MongoDB 中按索引删除数组元素,您可以使用 $unset 和 $pull 运算符。从数组中删除数组元素分两个步骤。语法如下:db.yourCollectionName.update({}, {$unset:{"yourArrayListName.yourPosition":yourPositionValue}}; db.yourCollectionName.update({}, {$pull:{"yourArrayListName":null}});为了理解上述语法,让我们创建一个包含文档的集合。创建包含文档的集合的查询如下:>db.removeArrayElements.insertOne({"StudentName":"Larry", "StudentAge":23, "TechnicalSub ject":["C", "C++", "Java", "MongoDB"]}); { "acknowledged" : true, "insertedId" : ObjectId("5c6ea4879c4643706aef56d2") }使用 find() 方法显示集合中的所有文档。查询如下:> db.removeArrayElements.find().pretty();输出如下:{ "_id" : ObjectId("5c6ea4879c4643706aef56d2"), ... 阅读更多
1K+ 次浏览
有两种不同的方法可以在 MongoDB 中存储日期/时间。在第一种方法中,您可以使用类似于 JavaScript 的 Date 对象。Date 对象是在 MongoDB 中存储日期/时间的最佳方法。语法如下:new Date();在第二种方法中,您可以使用 ISODate()。语法如下:new ISODate();为了理解上述语法,让我们按照第一种方法创建一个包含文档的集合。创建包含文档的集合的查询如下:第一种方法:> db.ProductsInformation.insertOne({"ProductId":"Product-1", "ProductDeliveryDateTime":new Date()}); { "acknowledged" : true, "insertedId" : ObjectId("5c6ec6786fd07954a4890686") }第二种方法:> db.ProductsInformation.insertOne({"ProductId":"Product-2", "ProductDeliveryDateTime":new ... 阅读更多
10K+ 次浏览
您无法更新它,但您可以保存一个新的 id 并删除旧的 id。为了更新 MongoDB 的 _id,请按照以下步骤操作。步骤如下:步骤 1:在第一步中,您需要将 ObjectId 存储到一个变量中。anyVariableName=db.yourCollectionName.findOne({_id:yourObjectIdValue)});步骤 2:在第二步中,您需要设置一个新的 id。yourDeclaredVariableName._id=yourNewObjectIdValue;步骤 3:在第三步中,您需要在文档上插入新的 id。db.yourCollectionName.insert(yourDeclaredVariableName);步骤 4:在第四步中,您需要删除旧的 id。db.yourCollectionName.remove({_id:yourOldObjectIdValue)});为了理解上述步骤,让我们创建一个包含文档的集合。创建包含文档的集合的查询 ... 阅读更多
5K+ 次浏览
要计算数组中项目的数量,您可以使用 $size 运算符。语法如下:db.yourCollectionName.aggregate({$project:{anyFieldName:{$size:"$yourArrayName"}}}).prett y();为了理解上述语法,让我们创建一个包含文档的集合。创建包含文档的集合的查询如下:>db.getSizeOfArray.insertOne({"StudentId":1, "StudentName":"Larry", "StudentMarks":[87, 34, 5 6, 77, 89, 90]}); { "acknowledged" : true, "insertedId" : ObjectId("5c6ebc536fd07954a4890680") } >db.getSizeOfArray.insertOne({"StudentId":2, "StudentName":"Sam", "StudentMarks":[90, 76, 56 ]}); { "acknowledged" : true, "insertedId" : ObjectId("5c6ebc6b6fd07954a4890681") } >db.getSizeOfArray.insertOne({"StudentId":3, "StudentName":"Carol", "StudentMarks":[90, 76]}) ; { "acknowledged" : true, "insertedId" : ObjectId("5c6ebc7a6fd07954a4890682") }现在您可以从集合中显示所有文档 ... 阅读更多
28K+ 次浏览
您可以使用以下语法在 MongoDB 中选择单个字段:db.yourCollectionName.find({"yourFieldName":yourValue}, {"yourSingleFieldName":1, _id:0});在上述语法中,"yourSingleFieldName":1, _id:0 表示获取一个字段中的所有数据,不包括 _id。为了理解上述语法,让我们创建一个包含文档的集合。创建包含文档的集合的查询如下:> db.singleFieldDemo.insertOne({"StudentName":"David", "StudentAge":28}); { "acknowledged" : true, "insertedId" : ObjectId("5c6eba356fd07954a489067c") } > db.singleFieldDemo.insertOne({"StudentName":"Bob", "StudentAge":18}); { "acknowledged" : true, "insertedId" : ObjectId("5c6eba406fd07954a489067d") } > db.singleFieldDemo.insertOne({"StudentName":"Chris", "StudentAge":24}); { "acknowledged" : true, "insertedId" : ObjectId("5c6eba4c6fd07954a489067e") } > db.singleFieldDemo.insertOne({"StudentName":"Robert", "StudentAge":26}); { "acknowledged" : true, "insertedId" : ObjectId("5c6eba586fd07954a489067f") ... 阅读更多
1K+ 次浏览
在 MongoDB 中删除数组中的对象,可以使用 $pull 运算符。语法如下:db.yourCollectionName.update( {'_id':ObjectId("5c6ea036a0c51185aefbd14f")}, {$pull:{"yourArrayName":{"yourArrayFieldName":yourValue}}}, false, true);为了理解上述语法,让我们创建一个包含文档的集合。创建包含文档的集合的查询如下:> db.removeObject.insertOne({"CustomerName":"Maxwell", "CustomerAge":23, ... "CustomerDetails":[ ... { ... "CustomerId":100, ... "CustomerProduct":"Product-1" ... }, ... { ... "CustomerId":150, ... "CustomerProduct":"Product-2" ... }, ... { ... "CustomerId":200, ... "CustomerProduct":"Product-3" ... } ... ] ... }); { "acknowledged" : true, "insertedId" : ObjectId("5c6ea036a0c51185aefbd14f") }使用 find() 方法显示集合中的所有文档。查询如下 ... 阅读更多
752 次浏览
在 MongoDB 中删除数组元素,可以使用 $pull 和 $in 运算符。语法如下:db.yourCollectionName.update({}, {$pull:{yourFirstArrayName:{$in:["yourValue"]}, yourSecondArrayName:"yourValue"}}, {multi:true} );为了理解上述语法,让我们创建一个包含文档的集合。创建包含文档的集合的查询如下:>db.removeArrayElement.insertOne({"StudentName":"Larry", "StudentCoreSubject":["MongoD B", "MySQL", "SQL Server", "Java"], "StudentFavouriteTeacher":["John", "Marry", "Carol"]}); { "acknowledged" : true, "insertedId" : ObjectId("5c6ec9c46fd07954a4890688") }使用 find() 方法显示集合中的所有文档。查询如下:> db.removeArrayElement.find().pretty();以下是输出结果:{ "_id" : ObjectId("5c6ec9c46fd07954a4890688"), "StudentName" : "Larry", "StudentCoreSubject" : [ ... 阅读更多