美文网首页
景区 景区评论分组查询

景区 景区评论分组查询

作者: 陈文瑜 | 来源:发表于2019-10-04 09:15 被阅读0次

景区、评论 操作

  • 查询语句
db.spot.aggregate(
    {
        $lookup:{
            from:'spot_comment_1',
            localField:'ota_spot_id',
            foreignField:'ota_spot_id',
            as: 'spot_comment'
        }
    },
    {
    $unwind: {
        path: "$spot_comment",
        preserveNullAndEmptyArrays: true
    }
    },
    {
        $project:{
                ota_spot_id : '$ota_spot_id',
                spot_name : '$spot_name',
                create_at: '$spot_comment.create_at',
                ota_spot_1515791 : {$cond : [{$eq : ['$spot_comment.ota_spot_id',1515791]},1,0]},
                ota_spot_30067 : {$cond : [{$eq : ['$spot_comment.ota_spot_id',30067]},1,0]},
                ota_spot_339 : {$cond : [{$eq : ['$spot_comment.ota_spot_id',339]},1,0]},
                ota_spot_5427075 : {$cond : [{$eq : ['$spot_comment.ota_spot_id',5427075]},1,0]},
                ota_spot_127339 : {$cond : [{$eq : ['$spot_comment.ota_spot_id',127339]},1,0]},
                ota_spot_62931 : {$cond : [{$eq : ['$spot_comment.ota_spot_id',62931]},1,0]},
                ota_spot_100025 : {$cond : [{$eq : ['$spot_comment.ota_spot_id',100025]},1,0]},
                ota_spot_103113 : {$cond : [{$eq : ['$spot_comment.ota_spot_id',103113]},1,0]}
        }
    },
    {
        $match:{
                $and:[
                    {$or:[
                        {'ota_spot_id':{$eq:103113}},
                        {'ota_spot_id':{$eq:100025}},
                        {'ota_spot_id':{$eq:5427075}},
                        {'ota_spot_id':{$eq:339}}
                    ]},
                    {'create_at':{$gte:'2017-12-04'}}
                ]
        }
    },
    {
        $group:{
            _id:{ota_spot_id:'$ota_spot_id','spot_name':'$spot_name'},
            ota_spot_1515791_count : {$sum : '$ota_spot_1515791'},
            ota_spot_30067_count : {$sum : '$ota_spot_30067'},
            ota_spot_339_count : {$sum : '$ota_spot_339'},
            ota_spot_5427075_count : {$sum : '$ota_spot_5427075'},
            ota_spot_127339_count : {$sum : '$ota_spot_127339'},
            ota_spot_62931_count : {$sum : '$ota_spot_62931'},
            ota_spot_100025_count : {$sum : '$ota_spot_100025'},
            ota_spot_103113_count : {$sum : '$ota_spot_103113'}
        }
    }
)
  • 返回结果
// 1
{
    "_id": {
        "ota_spot_id": NumberInt("339"),
        "spot_name": "石燕湖生态旅游公园"
    },
    "ota_spot_1515791_count": 0,
    "ota_spot_30067_count": 0,
    "ota_spot_339_count": 75,
    "ota_spot_5427075_count": 0,
    "ota_spot_127339_count": 0,
    "ota_spot_62931_count": 0,
    "ota_spot_100025_count": 0,
    "ota_spot_103113_count": 0
}

// 2
{
    "_id": {
        "ota_spot_id": NumberInt("5427075"),
        "spot_name": "石牛寨国家地质公园"
    },
    "ota_spot_1515791_count": 0,
    "ota_spot_30067_count": 0,
    "ota_spot_339_count": 0,
    "ota_spot_5427075_count": 49,
    "ota_spot_127339_count": 0,
    "ota_spot_62931_count": 0,
    "ota_spot_100025_count": 0,
    "ota_spot_103113_count": 0
}

// 3
{
    "_id": {
        "ota_spot_id": NumberInt("100025"),
        "spot_name": "长沙石燕湖"
    },
    "ota_spot_1515791_count": 0,
    "ota_spot_30067_count": 0,
    "ota_spot_339_count": 0,
    "ota_spot_5427075_count": 0,
    "ota_spot_127339_count": 0,
    "ota_spot_62931_count": 0,
    "ota_spot_100025_count": 219,
    "ota_spot_103113_count": 0
}

// 4
{
    "_id": {
        "ota_spot_id": NumberInt("103113"),
        "spot_name": "玻璃桥景区石牛寨"
    },
    "ota_spot_1515791_count": 0,
    "ota_spot_30067_count": 0,
    "ota_spot_339_count": 0,
    "ota_spot_5427075_count": 0,
    "ota_spot_127339_count": 0,
    "ota_spot_62931_count": 0,
    "ota_spot_100025_count": 0,
    "ota_spot_103113_count": 8
}

相关文章

  • 景区 景区评论分组查询

    景区、评论 操作 查询语句 返回结果

  • 2020-04-27 终南独秀,风吹麦浪

    翠华山原名太乙山,景区由碧山湖景区、天池景区和山崩石海景区3部分组成。秦汉唐王朝起被辟为皇家的"上林苑"、"御花园...

  • 贵州行之黄果树瀑布(一):陡坡塘和天星桥景区

    7月7日,我们从贵阳乘火车到安顺,在出站口打车前往黄果树瀑布景区。 黄果树景区主要由三部分组成:陡坡塘景区、天星桥...

  • 涠洲岛之二

    鳄鱼山景区 贝壳滩景区 红色景区 滴水丹屏景区 五彩滩景区 天主教堂景区 石螺口景区

  • 景区评论文本处理与评价分值预测 - 竞赛总结

    0.前言 二月份上旬参加了一个关于景区评分预测的竞赛,即根据游客对某景区的评论,预测该游客给该景区打几分。比赛还在...

  • 跟着高速游广东(第四天)

    2021年7月28日 晴热 周三 梅州客天下景区。 之前在网上做了攻略,看到很多评论说此景区除了票价贵...

  • 景区

    去杏花村酒厂,到了门口,感觉不像景区,于是爸爸说:景区在哪呢?宝宝说:那不是警察吗,警察的地方就是景区啊

  • 景区

    家门口建了个景区,取名“花伴湾”。这几天在宣传,五一试营业。有烧烤区,有孔雀园。听起来很不错。 今日抽了个空,去实...

  • 慢游南京(二)

    钟山风景名胜区总体由中山陵景区、明孝陵景区、灵谷景区、美龄宫景区、紫金山景区、白马公园景区六大景区构成。 钟山风景...

  • 泸州老窖博物馆

    泸州老窖风景区,坐落在泸州市江阳区,是国家4A级风景旅游区。景区由广场、国宝窖池群和博物馆三部分组成,始终...

网友评论

      本文标题:景区 景区评论分组查询

      本文链接:https://www.haomeiwen.com/subject/hnhbyctx.html