我從MongoDB查詢得到以下結果。從mongoDB變量獲取值
var temp = db.player_level_data.aggregate([
{$group:{_id:{team_name : "$team_name" ,
team_id : "$team_id" ,
team_code : "$team_code" }
}
}
])
的結果如下: -
{ "_id" : { "team_name" : "XYZ", "team_id" : 1, "team_code" : 3 } }
{ "_id" : { "team_name" : "ABC", "team_id" : 19, "team_code" : 35 } }
{ "_id" : { "team_name" : "DEF", "team_id" : 2, "team_code" : 7 } }
{ "_id" : { "team_name" : "IJK", "team_id" : 16, "team_code" : 56 } }
{ "_id" : { "team_name" : "MNO", "team_id" : 15, "team_code" : 110 } }
{ "_id" : { "team_name" : "QRS", "team_id" : 20, "team_code" : 21 } }
{ "_id" : { "team_name" : "TUV", "team_id" : 18, "team_code" : 57 } }
如上所述,將結果存儲在變量temp
。如何訪問變量temp
中的單個值。
它如何使用相應的team_name獲取team_code。如何從變量temp中使用team_name XYZ檢索team_code 3。
你想使用一些查詢或運行查詢之後做到這一點? – Shrabanee
運行查詢 – aman