MongoDB에서 JSON 배열의 내부 요소에 액세스하려면 점 표기법을 사용합니다. 문서로 컬렉션을 만들자 −
> db.demo687.insert({CountryName:'US', ... info: ... { ... id:101, ... details: ... [ ... { ... Name:'Chris', ... SubjectName:'MongoDB', ... otherDetails:{ ... "Marks":58, ... Age:23 ... } ... } ... ] ... } ... } ... ) WriteResult({ "nInserted" : 1 }) > db.demo687.insert({CountryName:'UK', ... info: ... { ... id:102, ... details: ... [ ... { ... Name:'David', ... SubjectName:'MySQL', ... otherDetails:{ ... "Marks":78, ... Age:21 ... } ... } ... ] ... } ... } ... ) WriteResult({ "nInserted" : 1 })
find() 메서드를 사용하여 컬렉션의 모든 문서 표시 -
> db.demo687.find();
이것은 다음과 같은 출력을 생성합니다 -
{ "_id" : ObjectId("5ea55658a7e81adc6a0b3962"), "CountryName" : "US", "info" : { "id" : 101, "details" : [ { "Name" : "Chris", "SubjectName" : "MongoDB", "otherDetails" : { "Marks" : 58, "Age" : 23 } } ] } } { "_id" : ObjectId("5ea55673a7e81adc6a0b3963"), "CountryName" : "UK", "info" : { "id" : 102, "details" : [ { "Name" : "David", "SubjectName" : "MySQL", "otherDetails" : { "Marks" : 78, "Age" : 21 } } ] } }
다음은 JSON 배열의 내부 요소에 액세스하는 쿼리입니다 -
> db.demo687.find({"info.details.otherDetails.Marks":58});
이것은 다음과 같은 출력을 생성합니다 -
{ "_id" : ObjectId("5ea55658a7e81adc6a0b3962"), "CountryName" : "US", "info" : { "id" : 101, "details" : [ { "Name" : "Chris", "SubjectName" : "MongoDB", "otherDetails" : { "Marks" : 58, "Age" : 23 } } ] } }