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

대소문자를 구분하지 않는 검색을 사용하는 MongoDB 쿼리?

<시간/>

대소문자를 구분하지 않는 검색의 경우 find() 메서드에서 regex를 사용합니다. 다음은 구문입니다 -

db.demo572.find({"yourFieldName" : { '$regex':/^yourValue$/i}});

위의 구문을 이해하기 위해 문서로 컬렉션을 만들어 보겠습니다 -

> db.demo572.insertOne({"CountryName":"US"});{
   "acknowledged" : true, "insertedId" : ObjectId("5e915f0e581e9acd78b427f1")
}
> db.demo572.insertOne({"CountryName":"UK"});{
   "acknowledged" : true, "insertedId" : ObjectId("5e915f17581e9acd78b427f2")
}
> db.demo572.insertOne({"CountryName":"Us"});{
   "acknowledged" : true, "insertedId" : ObjectId("5e915f1b581e9acd78b427f3")
}
> db.demo572.insertOne({"CountryName":"AUS"});{
   "acknowledged" : true, "insertedId" : ObjectId("5e915f20581e9acd78b427f4")
}
> db.demo572.insertOne({"CountryName":"us"});{
   "acknowledged" : true, "insertedId" : ObjectId("5e915f25581e9acd78b427f5")
}

find() 메서드를 사용하여 컬렉션의 모든 문서 표시 -

> db.demo572.find();

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

{ "_id" : ObjectId("5e915f0e581e9acd78b427f1"), "CountryName" : "US" }
{ "_id" : ObjectId("5e915f17581e9acd78b427f2"), "CountryName" : "UK" }
{ "_id" : ObjectId("5e915f1b581e9acd78b427f3"), "CountryName" : "Us" }
{ "_id" : ObjectId("5e915f20581e9acd78b427f4"), "CountryName" : "AUS" }
{ "_id" : ObjectId("5e915f25581e9acd78b427f5"), "CountryName" : "us" }

다음은 대소문자를 구분하지 않는 검색에 대한 쿼리입니다. −

> db.demo572.find({"CountryName" : { '$regex':/^US$/i}});

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

{ "_id" : ObjectId("5e915f0e581e9acd78b427f1"), "CountryName" : "US" }
{ "_id" : ObjectId("5e915f1b581e9acd78b427f3"), "CountryName" : "Us" }
{ "_id" : ObjectId("5e915f25581e9acd78b427f5"), "CountryName" : "us" }