- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个 NodeJS/MongoDB 应用程序,它的数据存储在一个名为 "Feedback"
的集合中。数据如下所示:
[
{
"__v": 0,
"_id": "57d6b2d09f46ca14440ac14e",
"customerFeedback": [
{
"_id": "57d6b2d09f46ca14440ac14f",
"answer": [
{
"_id": "57d6b2d09f46ca14440ac150",
"answerValue": "cat",
"answerWeight": 0
}
],
"question": "What is your favourite thing about this shop?",
"questionId": "57d65edc0132461120fa0afd"
},
{
"_id": "57d6b2d09f46ca14440ac151",
"answer": [
{
"_id": "57d6b2d09f46ca14440ac152",
"answerValue": "Okay",
"answerWeight": 0
}
],
"question": "How was your experience today?",
"questionId": "57d69ef6dbb25611e46e6bc9"
}
],
"shopId": "SH0001",
"feedbackCreatedOn": "2016-09-12T13:51:12.703Z",
"questionsForDay": "2016-09-12T00:00:00Z"
},
{
"__v": 0,
"_id": "57d6b3389f46ca14440ac157",
"customerFeedback": [
{
"_id": "57d6b3389f46ca14440ac158",
"answer": [
{
"_id": "57d6b3389f46ca14440ac159",
"answerValue": "cat",
"answerWeight": 0
}
],
"question": "What is your favourite thing about this shop?",
"questionId": "57d65edc0132461120fa0afd"
},
{
"_id": "57d6b3389f46ca14440ac15a",
"answer": [
{
"_id": "57d6b3389f46ca14440ac15b",
"answerValue": "Very Good",
"answerWeight": 0
}
],
"question": "How was your experience today?",
"questionId": "57d69ef6dbb25611e46e6bc9"
},
{
"_id": "57d6b3389f46ca14440ac15c",
"answer": [
{
"_id": "57d6b3389f46ca14440ac15d",
"answerValue": "Cost",
"answerWeight": 0
}
],
"question": "What would you like us to improve on?",
"questionId": "57d6b32d9f46ca14440ac153"
}
],
"shopId": "SH0001",
"feedbackCreatedOn": "2016-09-12T13:52:56.939Z",
"questionsForDay": "2016-09-12T00:00:00Z"
},
{
"__v": 0,
"_id": "57d6c8eb97157f10a4e5c2e7",
"customerFeedback": [
{
"_id": "57d6c8eb97157f10a4e5c2e8",
"answer": [
{
"_id": "57d6c8eb97157f10a4e5c2ea",
"answerValue": "Customer Experience",
"answerWeight": 0
},
{
"_id": "57d6c8eb97157f10a4e5c2e9",
"answerValue": "Others",
"answerWeight": 0
}
],
"question": "What would you like us to improve on?",
"questionId": "57d6b7d99ee61e47f01e5334"
}
],
"shopId": "SH0003",
"feedbackCreatedOn": "2016-09-12T15:25:31.724Z",
"questionsForDay": "2016-09-12T00:00:00Z"
}
]
结果数组中有很多这样的条目,但上面的数据可以说明这一点。
我的问题是,对于给定的 shopId
和 questionId
,我想计算每个 answerValue
出现的次数。我该怎么做?
我能够使用 find 方法将结果过滤到所需的数据集(例如)
db.Feedback.find({shopId:"SH0001",'customerFeedback.questionId':"57d65edc0132461120fa0afd"})
但我不确定如何将数据聚合成我想要的格式。
最佳答案
这个管道应该给你想要的结果
db.getCollection("yourCollection").aggregate([
{ $unwind: "$customerFeedback" },
{ $unwind: "$customerFeedback.answer" },
{
$group: {
_id: {
shopId: "$shopId",
questionId: "$customerFeedback.questionId",
answerValue: "$customerFeedback.answer.answerValue"
},
count: { $sum: 1 }
}
}
])
您的样本数据给出以下输出
/* 1 */
{
"_id" : {
"shopId" : "SH0003",
"questionId" : "57d6b7d99ee61e47f01e5334",
"answerValue" : "Others"
},
"count" : 1.0
}
/* 2 */
{
"_id" : {
"shopId" : "SH0003",
"questionId" : "57d6b7d99ee61e47f01e5334",
"answerValue" : "Customer Experience"
},
"count" : 1.0
}
/* 3 */
{
"_id" : {
"shopId" : "SH0001",
"questionId" : "57d65edc0132461120fa0afd",
"answerValue" : "cat"
},
"count" : 2.0
}
/* 4 */
{
"_id" : {
"shopId" : "SH0001",
"questionId" : "57d69ef6dbb25611e46e6bc9",
"answerValue" : "Okay"
},
"count" : 1.0
}
/* 5 */
{
"_id" : {
"shopId" : "SH0001",
"questionId" : "57d6b32d9f46ca14440ac153",
"answerValue" : "Cost"
},
"count" : 1.0
}
/* 6 */
{
"_id" : {
"shopId" : "SH0001",
"questionId" : "57d69ef6dbb25611e46e6bc9",
"answerValue" : "Very Good"
},
"count" : 1.0
}
当然,您可以使用额外的 $match 过滤结果如果您只对特定值感兴趣,请在这个阶段
因评论而更新:
要使用 $match
过滤结果,您可以像这样展开嵌套的客户反馈数组后使用它
...
{ $unwind: "$customerFeedback" },
{ $match: { shopId: "SH0001", "customerFeedback.questionId": "57d65edc0132461120fa0afd" } },
{ $unwind: "$customerFeedback.answer" },
{
$group: {
_id: {
shopId: "$shopId",
questionId: "$customerFeedback.questionId",
answerValue: "$customerFeedback.answer.answerValue"
},
count: { $sum: 1 }
}
}
...
这会导致
{
"_id" : {
"shopId" : "SH0001",
"questionId" : "57d65edc0132461120fa0afd",
"answerValue" : "cat"
},
"count" : 2.0
}
如果您在 shopId
和/或 customerFeedback.questionId
上有大量文档或索引,那么您可能需要复制 $match
阶段到你的管道的前面,这样你就可以只展开相应商店的文档,并且至少有一个所需问题的反馈。所以有了这个(从正确性的 Angular 来看可选优化)它看起来像这样
...
{ $match: { shopId: "SH0001", "customerFeedback.questionId": "57d65edc0132461120fa0afd" } },
{ $unwind: "$customerFeedback" },
{ $match: { shopId: "SH0001", "customerFeedback.questionId": "57d65edc0132461120fa0afd" } },
{ $unwind: "$customerFeedback.answer" },
{
$group: {
_id: {
shopId: "$shopId",
questionId: "$customerFeedback.questionId",
answerValue: "$customerFeedback.answer.answerValue"
},
count: { $sum: 1 }
}
}
...
关于javascript - Mongoose :聚合和计数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39455404/
我有一个 Cassandra 集群,里面有 4 个表和数据。 我想使用聚合函数(sum,max ...)发出请求,但我在这里读到这是不可能的: http://www.datastax.com/docu
我有以下两张表 Table: items ID | TITLE 249 | One 250 | Two 251 | Three 我投票给这些: Table: votes VID | IID | u
这个问题在这里已经有了答案: Update MongoDB field using value of another field (12 个答案) 关闭 3 年前。 我想根据另一个“源”集合的文档中
我的收藏包含以下文件。我想使用聚合来计算里面有多少客户,但我遇到了一些问题。我可以获得总行数,但不能获得总(唯一)客户。 [{ _id: "n001", channel: "Kalip
我有下表 Id Letter 1001 A 1001 H 1001 H 1001 H 1001 B 1001 H 1001 H 1001
得到一列的表 ABC。 “创建”的日期列。所以样本值就像; created 2009-06-18 13:56:00 2009-06-18 12:56:00 2009-06-17 14:02:0
我有一个带有数组字段的集合: {[ name:String buyPrice:Int sellPrice:Int ]} 我试图找到最低和最高买入/卖出价格。在某些条目中,买入或卖出价格为零
我有以下问题: 在我的 mongo db 中,我有以下结构: { "instanceId": "12", "eventId": "0-1b", "activityType":
下面给出的是我要在其上触发聚合查询的 Elasticsearch 文档。 { "id": 1, "attributes": [ { "fieldId": 1,
我正在使用 Django 的 aggregate query expression总计一些值。最终值是一个除法表达式,有时可能以零作为分母。如果是这种情况,我需要一种方法来逃避,以便它只返回 0。 我
我正在学习核心数据,特别是聚合。 当前我想要做的事情:计算表中在某些条件上具有逆关系的多对关系的记录数。 目前我正在这样做: NSExpression *ex = [NSExpression expr
我需要有关 Delphi 中的 ClientDatasets 的一些帮助。 我想要实现的是一个显示客户的网格,其中一列显示每个客户的订单数量。我将 ClientDataset 放在表单上并从 Delp
我的集合有 10M 个文档,并且有一个名为 movieId 的字段;该文档具有以下结构: { "_id" : ObjectId("589bed43e3d78e89bfd9b779"), "us
这个问题已经有答案了: What is the difference between association, aggregation and composition? (21 个回答) 已关闭 9
我在 elasticsearch 中有一些类似于这些示例的文档: { "id": ">", "list": [ "a", "b", "c" ] } { "id"
我正在做一些聚合。但是结果完全不是我所期望的,似乎它们没有聚合索引中与我的查询匹配的所有文档,在这种情况下 - 它有什么好处? 例如,首先我做这个查询: {"index":"datalayer","t
假设我在 ES 中有这些数据。 | KEY | value | |:-----------|------------:| | A |
可能在我的文档中,我有一个被分析的文本字段。我只是在ElasticSearch AggregationAPI中迷路了。我需要2种不同情况的支持: 情况A)结果是带有计数标记(条款)的篮子下降。 情况B
我正在为网上商店构建多面过滤功能,如下所示: Filter on Brand: [ ] LG (10) [ ] Apple (5) [ ] HTC (3) Filter on OS: [ ] Andr
我有一个父/子关系并且正在搜索 child 。 是否可以在父属性上创建聚合? 例如parent 是 POST,children 是 COMMENT。如果父项具有“类别”属性,是否可以搜索 COMMEN
我是一名优秀的程序员,十分优秀!