mongodb分組聚合查詢以及spring-data-mongodb實現

2020-10-11 13:00:18

1. mongodb複雜查詢

查詢2020年1月1日以後有操作記錄但是2020年6月1日後未上線的使用者

db.user_history.aggregate([
    {
        $match : {
			'updateTime' : { $gte : ISODate("2020-01-01T00:00:00Z") }
        }
    },
    {
        $group: {
            _id: '$userId',
            last: { $last: '$updateTime'},
        }
    },
    {
        $project: {
            _id: 1,
            last: 1
        }
    },
    {
        $match : {
            'last': { $lt: ISODate("2020-06-01T00:00:00Z") }
        }
    }
]);

2. spring-data-mongodb實現

// match
MatchOperation match = match(where("updateTime").gte(beginTime));
// group
GroupOperation group = group("userId").last("updateTime").as("last");
// project
ProjectionOperation project = project("last");
// match2
MatchOperation match2 = match(where("last").lt(endTime));
AggregationResults<UserResult> results = mongoTemplate.aggregate(
		newAggregation(match, group, project, match2), UserHistory.class, UserResult.class);
return results.getMappedResults();