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

MongoDB에 필드가 있는 경우에만 조건을 적용하는 방법은 무엇입니까?

<시간/>

이를 위해 $or 연산자를 사용할 수 있습니다. 먼저 문서로 컬렉션을 만들어 보겠습니다. −

> db.applyConditionDemo.insertOne({"StudentName":"Larry","StudentAge":21,"StudentMarks":45});
{
   "acknowledged" : true,
   "insertedId" : ObjectId("5cb80b78623186894665ae36")
}
> db.applyConditionDemo.insertOne({"StudentName":"Sam","StudentAge":23,"StudentMarks":55});
{
   "acknowledged" : true,
   "insertedId" : ObjectId("5cb80b87623186894665ae37")
}
> db.applyConditionDemo.insertOne({"StudentName":"David","StudentAge":21,"StudentMarks":65});
{
   "acknowledged" : true,
   "insertedId" : ObjectId("5cb80b95623186894665ae38")
}
> db.applyConditionDemo.insertOne({"StudentName":"Carol","StudentAge":24,"StudentMarks":78});
{
   "acknowledged" : true,
   "insertedId" : ObjectId("5cb80ba3623186894665ae39")
}
> db.applyConditionDemo.insertOne({"StudentName":"Chris","StudentAge":21,"StudentMarks":88});
{
   "acknowledged" : true,
   "insertedId" : ObjectId("5cb80bae623186894665ae3a")
}
> db.applyConditionDemo.insertOne({"StudentName":"Robert","StudentMarks":98});
{
   "acknowledged" : true,
   "insertedId" : ObjectId("5cb80c3d623186894665ae3b")
}

다음은 find() 메서드를 사용하여 컬렉션의 모든 문서를 표시하는 쿼리입니다. -

> db.applyConditionDemo.find().pretty();

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

{
   "_id" : ObjectId("5cb80b78623186894665ae36"),
   "StudentName" : "Larry",
   "StudentAge" : 21,
   "StudentMarks" : 45
}
{
   "_id" : ObjectId("5cb80b87623186894665ae37"),
   "StudentName" : "Sam",
   "StudentAge" : 23,
   "StudentMarks" : 55
}
{
   "_id" : ObjectId("5cb80b95623186894665ae38"),
   "StudentName" : "David",
   "StudentAge" : 21,
   "StudentMarks" : 65
}
{
   "_id" : ObjectId("5cb80ba3623186894665ae39"),
   "StudentName" : "Carol",
   "StudentAge" : 24,
   "StudentMarks" : 78
}
{
   "_id" : ObjectId("5cb80bae623186894665ae3a"),
   "StudentName" : "Chris",
   "StudentAge" : 21,
   "StudentMarks" : 88
}
{
   "_id" : ObjectId("5cb80c3d623186894665ae3b"),
   "StudentName" : "Robert",
   "StudentMarks" : 98
}

다음은 필드가 존재하는 경우에만 조건을 적용하는 쿼리입니다 -

> db.applyConditionDemo.find({ $or: [ { StudentAge: { $exists:false } }, { StudentAge:21 } ]}).pretty();

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

{
   "_id" : ObjectId("5cb80b78623186894665ae36"),
   "StudentName" : "Larry",
   "StudentAge" : 21,
   "StudentMarks" : 45
}
{
   "_id" : ObjectId("5cb80b95623186894665ae38"),
   "StudentName" : "David",
   "StudentAge" : 21,
   "StudentMarks" : 65
}
{
   "_id" : ObjectId("5cb80bae623186894665ae3a"),
   "StudentName" : "Chris",
   "StudentAge" : 21,
   "StudentMarks" : 88
}
{
   "_id" : ObjectId("5cb80c3d623186894665ae3b"),
   "StudentName" : "Robert",
   "StudentMarks" : 98
}