如何将mongodb查询转换为sql查询

时间:2018-08-28 09:54:59

标签: python django mongodb mongodb-query

这是我的SQL查询:

select count(id) from bandwidth_log where studio_id=8130 group by country

这是我的mongo查询:

  (
        [
            { "$match": { "studio_id": 8130 } },
            {"$group" : {"_id":"$country", "view_count":{"$sum":1}}},
            {"$sort": {"_id": 1 }}
        ]
    )

我期望上面的sql到mongodb查询的翻译查询是这样的。它在我的mongo shell中工作正常。但是在使用python时,它即将出现的emplity数据。小麦记录可在数据库中找到。

我需要编写mongo查询。

0 个答案:

没有答案