Home > database >  For how great god explain how mongo multidimensional aggregation
For how great god explain how mongo multidimensional aggregation

Time:09-19

Like I have a table now there are:
{school: 1, class: 1, student: 20},
{school: 1, class: 2, student: 30},
{school: 2, class: 1, student: 20},
{school: 2, class: 2, student: 30},

I hope that after the search has become
-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
{
School: 1
Class: {
1: {
Student:
20}
2: {
Student:
30}
}
}

{
School: 2
Class: {
1: {
Student:
20}
2: {
Student:
30}
}
}

-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
Beginner mongo strives for the great god,

CodePudding user response:

Top!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! 11
  • Related