개발 기록

mongoDB object 검색 본문

TIL

mongoDB object 검색

수염차 2024. 2. 14. 09:13

https://koonsland.tistory.com/120

 

[MongoDB] 검색(2): Array 또는 Object 검색 방법

앞선 포스팅에서 MongoDB의 Document를 찾는 방법을 알아보았습니다. 2021.03.13 - [쿤즈 Server/MongoDB] - [MongoDB] Atlas 명령어 연결 및 find() 검색기능 사용방법 [MongoDB] Atlas 명령어 연결 및 find() 검색기능 사

koonsland.tistory.com

 

 

{
    "_id" : ObjectId("61e93974a9b44"),
    "summary" : {
        "errCnt" : 0,
        "successCnt" : 2,
        "reqCnt" : 2
    }
}

 

db.getCollection('record').find({"summary.reqCnt":2}

 

Comments