关于如何在spring Boot criteria中编写此查询的一些帮助。
db.collection.aggregate([
{"$group" : { "_id": "$field1", "count": { "$sum": 1 } } },
{"$match": {"_id" :{ "$ne" : null } , "count" : {"$gt": 1} } },
{"$project": {"name" : "$_id", "_id" : 0} }
])
关于如何在spring Boot criteria中编写此查询的一些帮助。
db.collection.aggregate([
{"$group" : { "_id": "$field1", "count": { "$sum": 1 } } },
{"$match": {"_id" :{ "$ne" : null } , "count" : {"$gt": 1} } },
{"$project": {"name" : "$_id", "_id" : 0} }
])
1条答案
按热度按时间x8diyxa71#
您可以尝试以下代码:
文件:
和一个Baeldung example。