전체 조회 db.collection 명.find();조건 검색 db.collection 명.find({"필드명": "검색"});논리 검색 db.collection 명.find({ $or: [ { "필드명": "검색어" }, { "필드명": "검색어" } ] }) // OR 검색 db.collection 명.find({ $and: [ { "필드명": "검색어" }, { "필드명": "검색어" } ] }) // AND 검색 db.collection 명.find({ $not: [ { "필드명": "검색어" }, { "필드명": "검색어" } ] }) // 하나라도 만족하지 않는 조건검색 db.collection 명.find({ $nor: [ { "필드명": "검색어" }, { "필드명": "검색어" } ] }..