这是我的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查询。