Heim > Fragen und Antworten > Hauptteil
{
userId: OjbectId,
updatedAt: Date
}
本人菜鸟,求教一下.
天蓬老师2017-05-02 09:25:01
如果用SQL知道应该怎么写,用MongoDB也是一样的原理。这是一个很普通的分组聚合查询。答案在下面,但还是希望你可以自己尝试去网上自己搜索一下答案,锻炼独立解决问题的能力。
db.collection.aggregate([
{$group: {_id: "$userId", maxUpdatedAt: {$max: "$updatedAt"}}}
]);
使用aggregation的$max运算符可以很容易得到答案。