Hãy để chúng tôi tạo một bộ sưu tập với các tài liệu -
> db.demo576.insertOne({id:101,Name:"Chris",Marks:45}){ "acknowledged" : true, "insertedId" : ObjectId("5e916c3b581e9acd78b427fa") } > db.demo576.insertOne({id:101,Name:"John",Marks:55}){ "acknowledged" : true, "insertedId" : ObjectId("5e916c43581e9acd78b427fb") } > db.demo576.insertOne({id:101,Name:"John",Marks:65}){ "acknowledged" : true, "insertedId" : ObjectId("5e916c47581e9acd78b427fc") } > db.demo576.insertOne({id:102,Name:"David",Marks:37}){ "acknowledged" : true, "insertedId" : ObjectId("5e916c55581e9acd78b427fd") } > db.demo576.insertOne({id:102,Name:"David",Marks:75}){ "acknowledged" : true, "insertedId" : ObjectId("5e916c5e581e9acd78b427fe") }
Hiển thị tất cả các tài liệu từ một bộ sưu tập với sự trợ giúp của phương thức find () -
> db.demo576.find();
Điều này sẽ tạo ra kết quả sau -
{ "_id" : ObjectId("5e916c3b581e9acd78b427fa"), "id" : 101, "Name" : "Chris", "Marks" : 45 } { "_id" : ObjectId("5e916c43581e9acd78b427fb"), "id" : 101, "Name" : "John", "Marks" : 55 } { "_id" : ObjectId("5e916c47581e9acd78b427fc"), "id" : 101, "Name" : "John", "Marks" : 65 } { "_id" : ObjectId("5e916c55581e9acd78b427fd"), "id" : 102, "Name" : "David", "Marks" : 37 } { "_id" : ObjectId("5e916c5e581e9acd78b427fe"), "id" : 102, "Name" : "David", "Marks" : 75 }
Sau đây là truy vấn để sắp xếp và chỉ lấy hai trường đầu tiên trong thao tác “$ group” -
> var query = [ ... { ... "$sort": { "Marks": 1 } ... }, ... { ... "$group": { ... "_id": "$id", ... "out": { "$first": "$$ROOT" } ... } ... }, ... { ... "$project": { ... "_id": "$out._id", ... "id": "$out.id", ... "Name": "$out.Name", ... "MinMarks": "$out.Marks" ... } ... } ... ] > db.demo576.aggregate(query);
Điều này sẽ tạo ra kết quả sau -
{ "_id" : ObjectId("5e916c3b581e9acd78b427fa"), "id" : 101, "Name" : "Chris", "MinMarks" : 45 } { "_id" : ObjectId("5e916c55581e9acd78b427fd"), "id" : 102, "Name" : "David", "MinMarks" : 37 }