$all 연산자를 사용하여 여러 배열 항목으로 찾을 수 있습니다. 개념을 이해하기 위해 문서로 컬렉션을 만들어 보겠습니다.
문서로 컬렉션을 생성하는 쿼리는 다음과 같습니다 -
> db.findByMultipleArrayDemo.insertOne({"StudentFirstName":"John","StudentLastName":"Smith", "StudentCoreSubject":["컴파일러","운영 체제","컴퓨터 네트워크"]});{ "승인됨":true, "insertedId":ObjectId("5c7ef07b559dd2396bcfbfc4")}> db.findByMultipleArrayDemo.insertOne({"StudentFirstName":"Carol","StudentLastName":"TaylorreMonSubgo":"Taylor", "DBStudentCo" "MySQL","SQL Server"]});{ "승인됨":true, "insertedId":ObjectId("5c7ef09d559dd2396bcfbfc5")}> db.findByMultipleArrayDemo.insertOne({"StudentFirstName":"Bob","StudentLastName "Taylor", "StudentCoreSubject":["MongoDB","MySQL","SQL Server"]});{ "acknowledged" :true, "insertedId" :ObjectId("5c7ef0c7559dd2396bcfbfc6")}> db.findByMultipleArray(Demo.insert) {"StudentFirstName":"David","StudentLastName":"Johnson", "StudentCoreSubject":["Compiler","Operating System","Computer Networks"]});{ "acknowledged":true, "insertedId":ObjectId("5c7ef0f2559dd2396bcfbfc7")}
find() 메서드를 사용하여 컬렉션의 모든 문서를 표시합니다. 쿼리는 다음과 같습니다 -
> db.findByMultipleArrayDemo.find().pretty();
다음은 출력입니다 -
{ "_id":ObjectId("5c7ef07b559dd2396bcfbfc4"), "StudentFirstName":"John", "StudentLastName":"Smith", "StudentCoreSubject":[ "컴파일러", "운영 체제", "컴퓨터 네트워크" ] }{ "_id":ObjectId("5c7ef09d559dd2396bcfbfc5"), "StudentFirstName":"캐롤", "StudentLastName":"테일러", "StudentCoreSubject":[ "MongoDB", "MySQL", "SQL 서버" ]}{ " _id":ObjectId("5c7ef0c7559dd2396bcfbfc6"), "StudentFirstName":"Bob", "StudentLastName":"Taylor", "StudentCoreSubject":[ "MongoDB", "MySQL", "SQL Server" ]}{ "_id":ObjectId("5c7ef0f2559dd2396bcfbfc7"), "StudentFirstName":"David", "StudentLastName":"Johnson", "StudentCoreSubject":[ "컴파일러", "운영 체제", "컴퓨터 네트워크" ]}
다음은 여러 배열 항목으로 찾는 쿼리입니다. -
> db.findByMultipleArrayDemo.find({ StudentCoreSubject:{ $all:["컴파일러", "컴퓨터 네트워크"] }}).pretty();
다음은 배열 항목이 "Compiler" 및 "Computer Networks −
인 레코드를 표시하는 출력입니다.{ "_id":ObjectId("5c7ef07b559dd2396bcfbfc4"), "StudentFirstName":"John", "StudentLastName":"Smith", "StudentCoreSubject":[ "컴파일러", "운영 체제", "컴퓨터 네트워크" ] }{ "_id":ObjectId("5c7ef0f2559dd2396bcfbfc7"), "StudentFirstName":"David", "StudentLastName":"Johnson", "StudentCoreSubject":[ "컴파일러", "운영 체제", "컴퓨터 네트워크" ]}사전>