私はこのSQLクエリのmongodbクエリをしたい:
select x,y,message,foo from messege where x=1 and y=1 group by x,y order by _id DESC
しかし:
MongoCollection::グループ
誰でも私を助けることができますか?
私はこのSQLクエリのmongodbクエリをしたい:
select x,y,message,foo from messege where x=1 and y=1 group by x,y order by _id DESC
しかし:
MongoCollection::グループ
誰でも私を助けることができますか?
このため
select a,b,sum(c) csum from coll where active=1 group by a,b
それぞれは
db.coll.group(
{key: { a:true, b:true },
cond: { active:1 },
reduce: function(obj,prev) { prev.csum += obj.c; },
initial: { csum: 0 }
});
グループから取得した結果をソートすることはできません。次のように検索にソートを使用できます。
これをチェックしてください http://www.mongodb.org/display/DOCS/Aggregation#Aggregation-Group