gpt4 book ai didi

arrays - 查询嵌套文档 mongoDB

转载 作者:可可西里 更新时间:2023-11-01 10:42:22 25 4
gpt4 key购买 nike

这是我在文本模式下的示例 MongoDB

我想检索每个用户的数据。我也想要 _id,因为在一个完整的文档中它有几个结构相似的 _id。

我尝试使用 unwind 运算符,因为该对象包含这样的嵌套数组:

db.getCollection('topic_stats_2').aggregate([{ $unwind : "$usages.type.users.text" }, { $unwind : "$usages.type.users.stats.xyz1" }, { $unwind : "$usages.type.users.stats.xyz2" }, { $unwind : "$usages.type.users.stats.xyz3" }, { $unwind : "$usages.type.users.xyz4" }, { $unwind : "$usages.type.users.xyz5" }])

但结果为零。

我想要这样的表格格式的结果。我知道该表将包含大量冗余数据。但这是我想要的。

_id  | count | xyz4 | xyz5 | xyz1 | xyz2 | xyz3 | text | type |
| | | | | | | | |
| | | | | | | | |



/* 1 */
{
"_id" : “photo",
"count" : 236,
"usages" : [
{
"type" : 1,
"users" : [
{
"text" : “jkncfkjfdn",
"stats" : {
“xyz1" : 6,
“xyz2" : 1,
“xyz3" : 1194
},
“xyz4" : "julius babao",
“xyz5" : "juLiusbabao"
},
{
"text" : “fcnf",
"stats" : {
“xyz1" : 9,
“xyz2" : 6,
“xyz3" : 1199
},
“xyz4" : "Dman",
“xyz5" : "DmanTheDesigner"
},
{
"text" : “dckejsndc",
"stats" : {
“xyz1" : 1,
“xyz2" : 0,
“xyz3" : 1200
},
“xyz4" : "EastmanHouse",
“xyz5" : "EastmanHouse"
}
]
},
{
"type" : 2,
"users" : [
{
"text" : “msdnc",
"stats" : {
“xyz1" : 1,
“xyz2" : 1,
“xyz3" : 1168
},
“xyz4" : "Shayne",
“xyz5" : "RKTay"
},
{
"text" : “kfjnvfv",
"stats" : {
“xyz1" : 0,
“xyz2" : 0,
“xyz3" : 523
},
“xyz4" : "andy stitches",
“xyz5" : "myproudmendes"
},
{
"text" : “jkopoiuyt",
"stats" : null,
“xyz4" : "jm",
“xyz5" : "jihannelayosa"
}
]
},
{
"type" : 3,
"users" : [
{
"text" : “opted",
"stats" : {
“xyz1" : 58,
“xyz2" : 32,
“xyz3" : 1192
},
“xyz4" : "♪♫Lil Darryl♫♪",
“xyz5" : "LilDarryl301"
},
{
"text" : "Cloud 9",
"stats" : {
“xyz1" : 1,
“xyz2" : 1,
“xyz3" : 1171
},
“xyz4" : "FGN",
“xyz5" : "pretty_brown66"
},
{
"text" : "Cloud 9",
"stats" : {
“xyz1" : 0,
“xyz2" : 0,
“xyz3" : 997
},
“xyz4" : "Travis Porter Jr .",
“xyz5" : "AyoTravo"
}
]
},
{
"type" : 4,
"users" : [
{
"text" : “while",
"stats" : {
“xyz1" : 1,
“xyz2" : 1,
“xyz3" : 1200
},
“xyz4" : "LEGO Darth Vader",
“xyz5" : "LegoDarthVader"
},
{
"text" : “xjw",
"stats" : {
“xyz1" : 1,
“xyz2" : 1,
“xyz3" : 1198
},
“xyz4" : "The Brothers Brick",
“xyz5" : "BrothersBrick"
},
{
"text" : “pol",
"stats" : {
“xyz1" : 1,
“xyz2" : 1,
“xyz3" : 1197
},
“xyz4" : "BYTES & BRICKS",
“xyz5" : "lego_bb"
}
]
},
{
"type" : 5,
"users" : [
{
"text" : “qtwqyw",
"stats" : {
“xyz1" : 1,
“xyz2" : 1,
“xyz3" : 1155
},
“xyz4" : "Kell_1976",
“xyz5" : "LuvsMyMunchkie"
},
{
"text" : “ytyty",
"stats" : {
“xyz1" : 12,
“xyz2" : 4,
“xyz3" : 1200
},
“xyz4" : "carriewildes",
“xyz5" : "carriewildes"
},
{
"text" : "from the high.",
"stats" : {
“xyz1" : 0,
“xyz2" : 0,
“xyz3" : 1067
},
“xyz4" : "jake☄",
“xyz5" : "w0rshiptheking"
}
]
}
]
}

有人可以帮我解决这个问题吗?

最佳答案

您应用 $unwind 的方式 运算符是错误的,因为它仅作用于数组字段,而您将其应用于非数组字段。您可以运行以下聚合管道对数组字段进行非规范化并获得所需的结构:

db.getCollection('topic_stats_2').aggregate([
{ "$unwind": "$usages" },
{ "$unwind": "$usages.users" },
{
"$project": {
"count": 1,
"xyz4": "$usages.users.xyz4",
"xyz5": "$usages.users.xyz5",
"xyz1": "$usages.users.stats.xyz1",
"xyz2": "$usages.users.stats.xyz2",
"xyz3": "$usages.users.stats.xyz3",
"text": "$usages.users.text",
"type": "$usages.type"
}
}
])

关于arrays - 查询嵌套文档 mongoDB,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36794894/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com