我有这样的SQL查询:
select count(id) as ct, city from table group by city order by ct desc
如何在Couchbase中执行此查询? 我有像这样的地图功能:
function (doc, meta) {
if(doc.city!==null) {
emit(doc.city,1)
}
}
并减少:
_count
我的查询网址是这样的:
_view/q7?group_level=1&descending=true
但它只是为了关键而不是价值。