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

MongoDB에서 대소문자를 구분하지 않는 쿼리를 만들 수 있습니까?

<시간/>

예, regexp를 사용하여 MongoDB에서 대소문자를 구분하지 않는 쿼리를 만들 수 있습니다. 구문은 다음과 같습니다.

db.yourCollectionName.find({"yourFieldName":/^yourvalue$/i});

위의 구문을 이해하기 위해 몇 가지 문서로 컬렉션을 만들어 보겠습니다. 문서로 컬렉션을 생성하는 쿼리는 다음과 같습니다.

> db.caseInsensitiveDemo.insertOne({"Name":"John"});
{
   "acknowledged" : true,
   "insertedId" : ObjectId("5c6d7a67f2db199c1278e7ef")
}
> db.caseInsensitiveDemo.insertOne({"Name":"JOHN"});
{
   "acknowledged" : true,
   "insertedId" : ObjectId("5c6d7ad6f2db199c1278e7f0")
}

find()를 사용하여 컬렉션의 모든 문서를 표시합니다. 쿼리는 다음과 같습니다.

> db.caseInsensitiveDemo.find();

다음은 출력입니다.

{ "_id" : ObjectId("5c6d7a67f2db199c1278e7ef"), "Name" : "John" }
{ "_id" : ObjectId("5c6d7ad6f2db199c1278e7f0"), "Name" : "JOHN" }

다음은 대소문자를 구분하지 않는 쿼리를 만드는 쿼리입니다.

> db.caseInsensitiveDemo.find({"Name":/^john$/i});

다음은 출력입니다.

{ "_id" : ObjectId("5c6d7a67f2db199c1278e7ef"), "Name" : "John" }
{ "_id" : ObjectId("5c6d7ad6f2db199c1278e7f0"), "Name" : "JOHN" }