반환할 필드 지정
개요
이 가이드 에서는 프로젝션 을 사용하여 읽기 작업에서 반환할 필드를 지정하기 위해 C++ 운전자 를 사용하는 방법을 학습 수 있습니다. 프로젝션 은 MongoDB 가 쿼리 에서 반환하는 필드를 지정하는 문서 입니다.
샘플 데이터
이 가이드 의 예제에서는 Atlas 샘플 데이터 세트 의 sample_restaurants
데이터베이스 에 있는 restaurants
컬렉션 을 사용합니다. C++ 애플리케이션 에서 이 컬렉션 에 액세스 하려면 Atlas cluster 에 연결하는 mongocxx::client
를 인스턴스화하고 db
및 collection
변수에 다음 값을 할당합니다.
auto db = client["sample_restaurants"]; auto collection = db["restaurants"];
무료 MongoDB Atlas cluster 를 생성하고 샘플 데이터 세트를 로드하는 방법을 학습 보려면 Atlas 시작하기 가이드 를 참조하세요.
프로젝션 유형
프로젝션을 사용하여 반환 문서에 포함할 필드를 지정하거나 제외할 필드를 지정할 수 있습니다. _id
필드를 제외하지 않는 한 포함 및 제외 문을 단일 프로젝션에서 결합할 수 없습니다.
포함할 필드 지정
결과에 포함할 필드를 지정하려면 mongocxx::options::find
클래스의 인스턴스 를 만들고 해당 projection
필드 를 설정하다 합니다. 이 필드 를 설정하다 하려면 다음 구문을 사용합니다.
<options instance>.projection(make_document(kvp("<field name>", 1)));
다음 예시 에서는 일치하는 문서의 name
, cuisine
및 borough
필드만 반환하도록 mongocxx::options::find
객체 의 projection
필드 를 설정합니다. 그런 다음 find()
메서드를 호출하여 name
필드 값이 "Emerald Pub"
인 모든 레스토랑을 찾고 mongocxx::options::find
객체 를 find()
에 매개 변수로 전달합니다.
mongocxx::options::find opts{}; opts.projection(make_document(kvp("name", 1), kvp("cuisine", 1), kvp("borough", 1))); auto cursor = collection.find(make_document(kvp("name", "Emerald Pub")), opts); for(auto&& doc : cursor) { std::cout << bsoncxx::to_json(doc) << std::endl; }
{ "_id" : { "$oid" : "..." }, "borough" : "Manhattan", "cuisine" : "American", "name" : "Emerald Pub" } { "_id" : { "$oid" : "..." }, "borough" : "Queens", "cuisine" : "American", "name" : "Emerald Pub" }
프로젝션을 사용하여 반환 문서에 포함할 필드를 지정하면 기본적으로 _id
필드도 포함됩니다. 다른 모든 필드는 암시적으로 제외됩니다. 반환 문서에서 _id
필드를 제거하려면 해당 필드를 명시적으로 제외해야 합니다.
필드 제외 _id
포함할 필드를 지정할 때 반환된 문서에서 _id
필드를 제외할 수도 있습니다.
다음 예시 에서는 이전 예시 와 동일한 쿼리 를 수행하지만 프로젝션 에서 _id
필드 를 제외합니다.
mongocxx::options::find opts{}; opts.projection(make_document(kvp("_id", 0), kvp("name", 1), kvp("cuisine", 1), kvp("borough", 1))); auto cursor = collection.find(make_document(kvp("name", "Emerald Pub")), opts); for(auto&& doc : cursor) { std::cout << bsoncxx::to_json(doc) << std::endl; }
{ "borough" : "Manhattan", "cuisine" : "American", "name" : "Emerald Pub" } { "borough" : "Queens", "cuisine" : "American", "name" : "Emerald Pub" }
제외할 필드 지정
결과에서 제외할 필드를 지정하려면 mongocxx::options::find
클래스의 인스턴스 를 만들고 해당 projection
필드 를 설정하다 합니다. 이 필드 를 설정하다 하려면 다음 구문을 사용합니다.
<options instance>.projection(make_document(kvp("<field name>", 0)));
다음 예시 에서는 일치하는 문서의 grades
및 address
필드를 제외하도록 mongocxx::options::find
객체 의 projection
필드 를 설정합니다. 그런 다음 find()
메서드를 호출하여 name
필드 값이 "Emerald Pub"
인 모든 레스토랑을 찾고 mongocxx::options::find
객체 를 find()
에 매개 변수로 전달합니다.
mongocxx::options::find opts{}; opts.projection(make_document(kvp("grades", 0), kvp("address", 0))); auto cursor = collection.find(make_document(kvp("name", "Emerald Pub")), opts); for(auto&& doc : cursor) { std::cout << bsoncxx::to_json(doc) << std::endl; }
{ "_id" : { "$oid" : "..." }, "borough" : "Manhattan", "cuisine" : "American", "name" : "Emerald Pub", "restaurant_id" : "40367329" } { "_id" : { "$oid" : "..." }, "borough" : "Queens", "cuisine" : "American", "name" : "Emerald Pub", "restaurant_id" : "40668598" }
프로젝션을 사용하여 제외할 필드를 지정하면 지정되지 않은 모든 필드가 반환 문서에 암시적으로 포함됩니다.
추가 정보
프로젝션에 학습 보려면 MongoDB Server 매뉴얼의 프로젝트 필드 가이드 를 참조하세요.
API 문서
이 가이드에서 사용되는 메서드 또는 유형에 대해 자세히 알아보려면 다음 API 설명서를 참조하세요.