-1

私はこのSQLクエリのmongodbクエリをしたい:

select x,y,message,foo from messege where x=1 and y=1 group by x,y order by _id DESC

しかし:

MongoCollection::グループ

誰でも私を助けることができますか?

4

1 に答える 1

1

このため

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

于 2012-11-24T15:27:23.540 に答える