중첩 문서에서 값을 가져오려면 점 표기법을 사용합니다. 문서로 컬렉션을 만들자 −
> db.demo591.insert([ ... { "Name": "John", "Age": 23 }, ... {"Name": "Carol", "Age": 26}, ... { "Name": "Robert", "Age": 29, ... details:[ ... { ... Email:"[email protected]",CountryName:"US"},{"Post":35} ... ]} ... ]); BulkWriteResult({ "writeErrors" : [ ], "writeConcernErrors" : [ ], "nInserted" : 3, "nUpserted" : 0, "nMatched" : 0, "nModified" : 0, "nRemoved" : 0, "upserted" : [ ] })
find() 메서드를 사용하여 컬렉션의 모든 문서 표시 -
> db.demo591.find();
이것은 다음과 같은 출력을 생성합니다 -
{ "_id" : ObjectId("5e92dd08fd2d90c177b5bcd3"), "Name" : "John", "Age" : 23 } { "_id" : ObjectId("5e92dd08fd2d90c177b5bcd4"), "Name" : "Carol", "Age" : 26 } { "_id" : ObjectId("5e92dd08fd2d90c177b5bcd5"), "Name" : "Robert", "Age" : 29, "details" : [ { "Email" : "[email protected]", "CountryName" : "US" }, { "Post" : 35 } ] }
다음은 점 표기법을 사용하여 중첩 문서를 가져오는 쿼리입니다 -
> db.demo591.find({"details.Email": "[email protected]"});
이것은 다음과 같은 출력을 생성합니다 -
{ "_id" : ObjectId("5e92dd08fd2d90c177b5bcd5"), "Name" : "Robert", "Age" : 29, "details" : [ { "Email" : "[email protected]", "CountryName" : "US" }, { "Post" : 35 } ] }