MongoDB: Is it possible to make a case-insensitive query?

Luke Dennis picture Luke Dennis · Dec 7, 2009 · Viewed 281.3k times · Source

Example:

> db.stuff.save({"foo":"bar"});

> db.stuff.find({"foo":"bar"}).count();
1
> db.stuff.find({"foo":"BAR"}).count();
0

Answer

rfunduk picture rfunduk · Dec 7, 2009

You could use a regex.

In your example that would be:

db.stuff.find( { foo: /^bar$/i } );

I must say, though, maybe you could just downcase (or upcase) the value on the way in rather than incurring the extra cost every time you find it. Obviously this wont work for people's names and such, but maybe use-cases like tags.