Reputation: 198338
I want to query something with SQL's like
query:
SELECT * FROM users WHERE name LIKE '%m%'
How can I achieve the same in MongoDB? I can't find an operator for like
in the documentation.
Upvotes: 1974
Views: 1858741
Reputation: 25814
That would have to be:
db.users.find({"name": /.*m.*/})
Or, similar:
db.users.find({"name": /m/})
You're looking for something that contains "m" somewhere (SQL's '%
' operator is equivalent to regular expressions' '.*
'), not something that has "m" anchored to the beginning of the string.
Note: MongoDB uses regular expressions (see docs) which are more powerful than "LIKE" in SQL. With regular expressions you can create any pattern that you imagine.
For more information on regular expressions, refer to Regular expressions (MDN).
Upvotes: 2575
Reputation: 99
It works too:
db.getCollection('collection_name').find({"field_name": /^searched_value/})
Upvotes: 1
Reputation: 234
If you want to use mongo JPA like query you should try this.
@Query("{ 'title' : { $regex: '^?0', $options: 'i' } }")
List<TestDocument> findLikeTitle(String title);
Upvotes: 0
Reputation: 9237
db.users.insert({name: 'patrick'})
db.users.insert({name: 'petra'})
db.users.insert({name: 'pedro'})
Therefore:
For:
db.users.find({name: /a/}) // Like '%a%'
Output: patrick, petra
For:
db.users.find({name: /^pa/}) // Like 'pa%'
Output: patrick
For:
db.users.find({name: /ro$/}) // Like '%ro'
Output: pedro
Upvotes: 663
Reputation: 2500
In MongoDb, can use like using MongoDb reference operator regular expression(regex).
For Same Ex.
MySQL - SELECT * FROM users WHERE name LIKE '%m%'
MongoDb
1) db.users.find({ "name": { "$regex": "m", "$options": "i" } })
2) db.users.find({ "name": { $regex: new RegExp("m", 'i') } })
3) db.users.find({ "name": { $regex:/m/i } })
4) db.users.find({ "name": /mail/ })
5) db.users.find({ "name": /.*m.*/ })
MySQL - SELECT * FROM users WHERE name LIKE 'm%'
MongoDb Any of Above with /^String/
6) db.users.find({ "name": /^m/ })
MySQL - SELECT * FROM users WHERE name LIKE '%m'
MongoDb Any of Above with /String$/
7) db.users.find({ "name": /m$/ })
Upvotes: 24
Reputation:
String yourdb={deepakparmar, dipak, parmar}
db.getCollection('yourdb').find({"name":/^dee/})
ans deepakparmar
db.getCollection('yourdb').find({"name":/d/})
ans deepakparmar, dipak
db.getCollection('yourdb').find({"name":/mar$/})
ans deepakparmar, parmar
Upvotes: 15
Reputation: 5305
For the Go driver:
filter := bson.M{
"field_name": primitive.Regex{
Pattern: keyword,
Options: "",
},
}
cursor, err := GetCollection().Find(ctx, filter)
Use a regex in the $in query (MongoDB documentation: $in):
filter := bson.M{
"field_name": bson.M{
"$in": []primitive.Regex{
{
Pattern: keyword,
Options: "",
},
}
}
}
cursor, err := GetCollection().Find(ctx, filter)
Upvotes: 2
Reputation: 591
Use:
const indexSearch = await UserModel.find(
{ $text: { $search: filter } },
);
if (indexSearch.length) {
return indexSearch;
}
return UserModel.find(
{
$or: [
{ firstName: { $regex: `^${filter}`, $options: 'i' } },
{ lastName: { $regex: `^${filter}`, $options: 'i' } },
{ middleName: { $regex: `^${filter}`, $options: 'i' } },
{ email: { $regex: `^${filter}`, $options: 'i' } },
],
},
);
I used a combination of regex and "index".
Upvotes: 4
Reputation: 36134
name
string by space and make an array of wordslet name = "My Name".split(" ").map(n => new RegExp(n));
console.log(name);
Result:
[/My/, /Name/]
There are two scenarios to match a string,
$in
: (it is similar to the $or
condition)Try $in Expressions. To include a regular expression in an $in
query expression, you can only use JavaScript regular expression objects (i.e., /pattern/
). For example:
db.users.find({ name: { $in: name } }); // name = [/My/, /Name/]
$all
: (it is similar to a $and
condition) a document should contain all wordsdb.users.find({ name: { $all: name } }); // name = [/My/, /Name/]
$and
and $or
conditionals and $regex
There are two scenarios to match a string,
$or
: (it is similar to the $in
condition)db.users.find({
$or: [
{ name: { $regex: "My" } },
{ name: { $regex: "Name" } }
// if you have multiple fields for search then repeat same block
]
})
$and
: (it is similar to the $all
condition) a document should contain all wordsdb.users.find({
$and: [
{
$and: [
{ name: { $regex: "My" } },
{ name: { $regex: "Name" } }
]
}
// if you have multiple fields for search then repeat same block
]
})
Upvotes: 3
Reputation: 695
The previous answers are perfectly answering the questions about the core MongoDB query. But when using a pattern-based search query such as:
{"keywords":{ "$regex": "^toron.*"}}
or
{"keywords":{ "$regex": "^toron"}}
in a Spring Boot JPA repository query with @Query annotation, use a query something like:
@Query(value = "{ keyword : { $regex : ?0 } }")
List<SomeResponse> findByKeywordContainingRegex(String keyword);
And the call should be either of:
List<SomeResponse> someResponseList = someRepository.findByKeywordsContainingRegex("^toron");
List<SomeResponse> someResponseList = someRepository.findByKeywordsContainingRegex("^toron.*");
But never use:
List<SomeResponse> someResponseList = someRepository.findByKeywordsContainingRegex("/^toron/");
List<SomeResponse> someResponseList =someRepository.findByKeywordsContainingRegex("/^toron.*/");
An important point to note: each time the ?0 field in @Query statement is replaced with a double quoted string. So forwardslash (/) should not be used in these cases! Always go for a pattern using double quotes in the searching pattern!! For example, use "^toron" or "^toron.*"
over /^toron/ or /^toron.*/
Upvotes: 0
Reputation: 5908
Just in case, someone is looking for an SQL LIKE kind of query for a key that holds an array of strings instead of a string, here it is:
db.users.find({"name": {$in: [/.*m.*/]}})
Upvotes: 0
Reputation: 315
One way to find the result as with equivalent to a like query:
db.collection.find({name:{'$regex' : 'string', '$options' : 'i'}})
Where i
is used for a case-insensitive fetch data.
Another way by which we can also get the result:
db.collection.find({"name":/aus/})
The above will provide the result which has the aus in the name containing aus.
Upvotes: 5
Reputation: 554
There are various ways to accomplish this.
The simplest one:
db.users.find({"name": /m/})
{ <field>: { $regex: /pattern/, $options: '<options>' } }
{ <field>: { $regex: 'pattern', $options: '<options>' } }
{ <field>: { $regex: /pattern/<options> } }
db.users.find({ "name": { $regex: "m"} })
More details can be found in $regex.
Upvotes: 3
Reputation: 1932
If you have a string variable, you must convert it to a regex, so MongoDB will use a like statement on it.
const name = req.query.title; //John
db.users.find({ "name": new Regex(name) });
Is the same result as:
db.users.find({"name": /John/})
Upvotes: 5
Reputation: 13855
Here is the command which uses the "starts with" paradigm:
db.customer.find({"customer_name" : { $regex : /^startswith/ }})
Upvotes: 0
Reputation: 320
You can also use the wildcard filter as follows:
{"query": { "wildcard": {"lookup_field":"search_string*"}}}
Be sure to use *
.
Upvotes: 0
Reputation: 9034
Regular expressions are expensive to process.
Another way is to create an index of text and then search it using $search
.
Create a text index of fields you want to make searchable:
db.collection.createIndex({name: 'text', otherField: 'text'});
Search for a string in the text index:
db.collection.find({
'$text'=>{'$search': "The string"}
})
Upvotes: 11
Reputation: 362
Use:
db.customer.find({"customerid": {"$regex": "CU_00000*", "$options": "i"}}).pretty()
When we are searching for string patterns, it is always better to use the above pattern as when we are not sure about case.
Upvotes: 3
Reputation: 1451
You have two choices:
db.users.find({"name": /string/})
or
db.users.find({"name": {"$regex": "string", "$options": "i"}})
For the second one, you have more options, like "i" in options to find using case insensitive.
And about the "string", you can use like ".string." (%string%), or "string.*" (string%) and ".*string) (%string) for example. You can use a regular expression as you want.
Upvotes: 58
Reputation: 55
If you're using PHP, you can use the MongoDB_DataObject wrapper like below:
$model = new MongoDB_DataObject();
$model->query("select * from users where name like '%m%'");
while($model->fetch()) {
var_dump($model);
}
Or:
$model = new MongoDB_DataObject('users);
$model->whereAdd("name like '%m%'");
$model->find();
while($model->fetch()) {
var_dump($model);
}
Upvotes: 1
Reputation: 2602
MongoRegex has been deprecated.
Use MongoDB\BSON\Regex:
$regex = new MongoDB\BSON\Regex ( '^m');
$cursor = $collection->find(array('users' => $regex));
//iterate through the cursor
Upvotes: 3
Reputation: 70459
It seems that there are reasons for using both the JavaScript /regex_pattern/
pattern as well as the MongoDB {'$regex': 'regex_pattern'}
pattern. See: MongoDB RegEx Syntax Restrictions
This is not a complete regular expression tutorial, but I was inspired to run these tests after seeing a highly voted ambiguous post above.
> ['abbbb','bbabb','bbbba'].forEach(function(v){db.test_collection.insert({val: v})})
> db.test_collection.find({val: /a/})
{ "val" : "abbbb" }
{ "val" : "bbabb" }
{ "val" : "bbbba" }
> db.test_collection.find({val: /.*a.*/})
{ "val" : "abbbb" }
{ "val" : "bbabb" }
{ "val" : "bbbba" }
> db.test_collection.find({val: /.+a.+/})
{ "val" : "bbabb" }
> db.test_collection.find({val: /^a/})
{ "val" : "abbbb" }
> db.test_collection.find({val: /a$/})
{ "val" : "bbbba" }
> db.test_collection.find({val: {'$regex': 'a$'}})
{ "val" : "bbbba" }
Upvotes: 7
Reputation: 2777
I found a free tool to translate MySQL queries to MongoDB: http://www.querymongo.com/
I checked with several queries. As I see it, almost all of them are correct. According to that, the answer is
db.users.find({
"name": "%m%"
});
Upvotes: 2
Reputation: 1036
If you want a 'like' search in MongoDB then you should go with $regex. By using it, the query will be:
db.product.find({name:{$regex:/m/i}})
For more, you can read the documentation as well - $regex
Upvotes: 4
Reputation: 57786
Here are different types of requirements and solutions for string search with regular expressions.
You can do with a regular expression which contains a word, i.e., like. Also you can use $options => i
for a case insensitive search.
string
db.collection.find({name:{'$regex' : 'string', '$options' : 'i'}})
string
, only with a regular expressiondb.collection.find({name:{'$regex' : '^((?!string).)*$', '$options' : 'i'}})
string
db.collection.find({name:{'$regex' : '^string$', '$options' : 'i'}})
string
db.collection.find({name:{'$regex' : '^string', '$options' : 'i'}})
string
db.collection.find({name:{'$regex' : 'string$', '$options' : 'i'}})
Keep Regular Expressions Cheat Sheet as a bookmark, and a reference for any other alterations you may need.
Upvotes: 112
Reputation: 247
As the MongoDB shell supports regular expressions, that's completely possible.
db.users.findOne({"name" : /.*sometext.*/});
If we want the query to be case-insensitive, we can use the "i" option, like shown below:
db.users.findOne({"name" : /.*sometext.*/i});
Upvotes: 3
Reputation: 5074
For Mongoose in Node.js:
db.users.find({'name': {'$regex': '.*sometext.*'}})
Upvotes: 25
Reputation: 16805
In a Node.js project and using Mongoose, use a like query:
var User = mongoose.model('User');
var searchQuery = {};
searchQuery.email = req.query.email;
searchQuery.name = {$regex: req.query.name, $options: 'i'};
User.find(searchQuery, function(error, user) {
if(error || user === null) {
return res.status(500).send(error);
}
return res.status(200).send(user);
});
Upvotes: 16
Reputation: 31232
A like query would be as shown below:
db.movies.find({title: /.*Twelve Monkeys.*/}).sort({regularizedCorRelation : 1}).limit(10);
For the Scala ReactiveMongo API,
val query = BSONDocument("title" -> BSONRegex(".*" + name + ".*", "")) // like
val sortQ = BSONDocument("regularizedCorRelation" -> BSONInteger(1))
val cursor = collection.find(query).sort(sortQ).options(QueryOpts().batchSize(10)).cursor[BSONDocument]
Upvotes: 6
Reputation: 2143
If you are using Spring-Data MongoDB, you can do it in this way:
String tagName = "m";
Query query = new Query();
query.limit(10);
query.addCriteria(Criteria.where("tagName").regex(tagName));
Upvotes: 5