给出示例文档
{
"user_id": "user 1",
"log":[
{
"index" : 1,
"position" : 50
},
{
"index" : 2,
"position" : 70
},
{
"index" : 3,
"position" : 60
}
]
},
{
"user_id": "user 2",
"log":[
{
"index" : 1,
"position" : 150
},
{
"index" : 2,
"position" : 570
},
{
"index" : 3,
"position" : 60
}
]
},
如何在mongo自己的shell上返回 user_id 具有最高位置并且它们各自的索引? 在这种情况下,结果将是:
谢谢!