Computer >> 컴퓨터 >  >> 프로그램 작성 >> MongoDB

MongoD에서 배열 값으로 특정 문서 가져오기


특정 문서를 가져오려면 toArray()와 함께 limit()를 사용하십시오. toArray() 메서드는 커서의 모든 문서를 포함하는 배열을 반환합니다. 문서로 컬렉션을 만들자 −

> db.demo482.insertOne({_id:1,"StudentInformation":[{"Name":"Chris","Age":21}]});
{ "acknowledged" : true, "insertedId" : 1 }
> db.demo482.insertOne({_id:2,"StudentInformation":[{"Name":"Bob","Age":23}]});
{ "acknowledged" : true, "insertedId" : 2 }
> db.demo482.insertOne({_id:3,"StudentInformation":[{"Name":"David","Age":20}]});
{ "acknowledged" : true, "insertedId" : 3 }

find() 메서드를 사용하여 컬렉션의 모든 문서 표시 -

> db.demo482.find();

이것은 다음과 같은 출력을 생성합니다 -

{ "_id" : 1, "StudentInformation" : [ { "Name" : "Chris", "Age" : 21 } ] }
{ "_id" : 2, "StudentInformation" : [ { "Name" : "Bob", "Age" : 23 } ] }
{ "_id" : 3, "StudentInformation" : [ { "Name" : "David", "Age" : 20 } ] }

다음은 limit() −

를 사용하여 특정 문서를 가져오는 쿼리입니다.
> db.demo482.find({}).limit(2).toArray();

이것은 다음과 같은 출력을 생성합니다 -

[
   {
      "_id" : 1,
      "StudentInformation" : [
         {
            "Name" : "Chris",
            "Age" : 21
         }
      ]
   },
   {
      "_id" : 2,
      "StudentInformation" : [
         {
            "Name" : "Bob",
            "Age" : 23
         }
      ]
   }
]