Answer by Deepak parmar for How to query MongoDB with "like"?
String deepakparmar, dipak, parmar db.getCollection('yourdb').find({"name":/^dee/}) ans deepakparmar db.getCollection('yourdb').find({"name":/d/}) ans deepakparmar, dipak...
View ArticleAnswer by saim2025 for How to query MongoDB with "like"?
You can also use the wildcard filter as follows: {"query": { "wildcard": {"lookup_field":"search_string*"}}} be sure to use *.
View ArticleAnswer by besthost for How to query MongoDB with "like"?
Using template literals with variables also works: {"firstname": {$regex : `^${req.body.firstname}.*` , $options: 'si' }}
View ArticleAnswer by Rust for How to query MongoDB with "like"?
Regex are expensive are 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:...
View ArticleAnswer by kz_sergey for How to query MongoDB with "like"?
Use aggregation substring search (with index!!!): db.collection.aggregate([{ $project : { fieldExists : { $indexOfBytes : ['$field', 'string'] } } }, { $match : { fieldExists : { $gt : -1 } } }, {...
View ArticleAnswer by arnav for How to query MongoDB with "like"?
>> db.car.distinct('name') [ "honda", "tat", "tata", "tata3" ] >> db.car.find({"name":/. *ta.* /})
View ArticleAnswer by priya raj for How to query MongoDB with "like"?
db.customer.find({"customerid": {"$regex": "CU_00000*", "$options": "i"}}).pretty() When we are searching for string patterns, always it is better to use the above pattern as when we are not sure about...
View ArticleAnswer by Shubham Verma for How to query MongoDB with "like"?
FullName like 'last' with status==’Pending’ between two dates: db.orders.find({ createdAt:{$gt:ISODate("2017-04-25T10:08:16.111Z"), $lt:ISODate("2017-05-05T10:08:16.111Z")}, status:"Pending",...
View ArticleAnswer by user3645907 for How to query MongoDB with "like"?
You have 2 choices: db.users.find({"name": /string/}) or db.users.find({"name": {"$regex": "string", "$options": "i"}}) On second one you have more options, like "i" in options to find using case...
View ArticleAnswer by damd for How to query MongoDB with "like"?
With MongoDB Compass, you need to use the strict mode syntax, as such: { "text": { "$regex": "^Foo.*", "$options": "i" } } (In MongoDB Compass, it's important that you use " instead of ')
View ArticleAnswer by CEDA for How to query MongoDB with "like"?
If you're using PHP, you can use MongoDB_DataObject wrapper like below: $model = new MongoDB_DataObject(); $model->query("select * from users where name like '%m%'"); while($model->fetch()) {...
View ArticleAnswer by Albert s for How to query MongoDB with "like"?
MongoRegex has been deprecated. Use MongoDB\BSON\Regex $regex = new MongoDB\BSON\Regex ( '^m'); $cursor = $collection->find(array('users' => $regex)); //iterate through the cursor
View ArticleAnswer by Bruno Bronosky for How to query MongoDB with "like"?
It seems that there are reasons for using both the javascript /regex_pattern/ pattern as well as the mongo {'$regex': 'regex_pattern'} pattern. See: MongoBD RegEx Syntax Restrictions This is not a...
View ArticleAnswer by Lakmal Vithanage for How to query MongoDB with "like"?
I found a free tool to translate MYSQL queries to MongoDB. http://www.querymongo.com/ I checked with several queries. as i see almost all them are correct. According to that, The answer is...
View ArticleAnswer by jarry jafery for How to query MongoDB with "like"?
If you want 'Like' search in mongo then you should go with $regex by using this query will be db.product.find({name:{$regex:/m/i}}) for more you can read the documentation as well....
View ArticleAnswer by Somnath Muluk for How to query MongoDB with "like"?
There are already many answers. I am giving different types of requirements and solutions for string search with regex. You can do with regex which contain word i.e like. Also you can use $options...
View ArticleAnswer by sravanthi for How to query MongoDB with "like"?
As Mongo shell support regex, that's completely possible. db.users.findOne({"name" : /.*sometext.*/}); If we want the query to be case-insensitive, we can use "i" option, like shown below:...
View ArticleAnswer by Shalabh Raizada for How to query MongoDB with "like"?
Use regular expressions matching as below. The 'i' shows case insensitivity. var collections = mongoDatabase.GetCollection("Abcd"); var queryA = Query.And( Query.Matches("strName", new...
View ArticleAnswer by Aqib Mumtaz for How to query MongoDB with "like"?
For Mongoose in Node.js db.users.find({'name': {'$regex': '.*sometext.*'}})
View ArticleAnswer by Shaishab Roy for How to query MongoDB with "like"?
In nodejs project and use mongoose use Like query var User = mongoose.model('User'); var searchQuery={}; searchQuery.email = req.query.email; searchQuery.name = {$regex: req.query.name, $options: 'i'};...
View ArticleAnswer by prayagupd for How to query MongoDB with "like"?
Like Query would be as shown below db.movies.find({title: /.*Twelve Monkeys.*/}).sort({regularizedCorRelation : 1}).limit(10); for scala ReactiveMongo api, val query = BSONDocument("title" ->...
View ArticleAnswer by Vaibhav for How to query MongoDB with "like"?
If you are using Spring-Data Mongodb You can do this in this way: String tagName = "m"; Query query = new Query(); query.limit(10); query.addCriteria(Criteria.where("tagName").regex(tagName));
View ArticleAnswer by The6thSense for How to query MongoDB with "like"?
Already u got the answers but to match regex with case insensitivity You could use the following query db.users.find ({ "name" : /m/i } ).pretty() The i in the /m/i indicates case insensitivity and...
View ArticleAnswer by Dap for How to query MongoDB with "like"?
For PHP mongo Like. I had several issues with php mongo like. i found that concatenating the regex params helps in some situations PHP mongo find field starts with. I figured I would post on here to...
View ArticleAnswer by cmarrero01 for How to query MongoDB with "like"?
You can use the new feature of 2.6 mongodb: db.foo.insert({desc: "This is a string with text"}); db.foo.insert({desc:"This is a another string with Text"}); db.foo.ensureIndex({"desc":"text"});...
View ArticleAnswer by Johnathan Douglas for How to query MongoDB with "like"?
db.users.insert({name: 'paulo'}) db.users.insert({name: 'patric'}) db.users.insert({name: 'pedro'}) db.users.find({name: /a/}) //like '%a%' out: paulo, patric db.users.find({name: /^pa/}) //like 'pa%'...
View ArticleAnswer by MADHAIYAN M for How to query MongoDB with "like"?
In SQL, the ‘like’ query is looks like this : select * from users where name like '%m%' In MongoDB console, it looks like this : db.users.find({"name": /m/}) // Not JSON formatted...
View ArticleAnswer by user2312578 for How to query MongoDB with "like"?
In Go and the mgo driver: Collection.Find(bson.M{"name": bson.RegEx{"m", ""}}).All(&result) where result is the struct instance of the sought after type
View ArticleAnswer by Eddy for How to query MongoDB with "like"?
If using node.js, it says that you can write this: db.collection.find( { field: /acme.*corp/i } ); //or db.collection.find( { field: { $regex: 'acme.*corp', $options: 'i' } } ); Also, you can write...
View ArticleAnswer by brenoriba for How to query MongoDB with "like"?
You can use where statement to build any JS script: db.myCollection.find( { $where: "this.name.toLowerCase().indexOf('m') >= 0" } ); Reference: http://docs.mongodb.org/manual/reference/operator/where/
View ArticleAnswer by Afshin Mehrabani for How to query MongoDB with "like"?
In PyMongo using Python Mongoose using Node.js Jongo, using Java mgo, using Go you can do: db.users.find({'name': {'$regex': 'sometext'}})
View ArticleAnswer by leon for How to query MongoDB with "like"?
In PHP, you could use following code: $collection->find(array('name'=> array('$regex' => 'm'));
View ArticleAnswer by Kyle H for How to query MongoDB with "like"?
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 Regexp's...
View ArticleAnswer by Joshua Partogi for How to query MongoDB with "like"?
You would use regex for that in mongo. e.g: db.users.find({"name": /^m/})
View ArticleHow to query MongoDB with "like"?
I want to query something with SQL's like query: SELECT * FROM users WHERE name LIKE '%m%' How to do I achieve the same in MongoDB? I can't find an operator for like in the documentation.
View ArticleAnswer by Lazaro Fernandes Lima Suleiman for How to query MongoDB with "like"?
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; //Johndb.users.find({ "name": new Regex(name) });Is the same...
View ArticleAnswer by KayV for How to query MongoDB with "like"?
Here is the command which uses starts with paradigmdb.customer.find({"customer_name" : { $regex : /^startswith/ }})
View ArticleAnswer by Ezequias Dinella for How to query MongoDB with "like"?
You can query with a regular expression:db.users.find({"name": /m/});If the string is coming from the user, maybe you want to escape the string before using it. This will prevent literal chars from the...
View ArticleAnswer by ajay_fuel_stock_lamp_stack for How to query MongoDB with "like"?
There are various ways to accomplish this.simplest-onedb.users.find({"name": /m/}){ <field>: { $regex: /pattern/, $options: '<options>' } }{ <field>: { $regex: 'pattern', $options:...
View ArticleAnswer by waseem khan for How to query MongoDB with "like"?
One way to find the result as with equivalent to like querydb.collection.find({name:{'$regex' : 'string', '$options' : 'i'}}) Where i use for cases insensitive fetch dataAnother way by which we can get...
View ArticleAnswer by g10guang for How to query MongoDB with "like"?
Skip this answer, if you don't use go driver.filter := bson.M{"field_name": primitive.Regex{ Pattern: keyword, Options: "", },}cursor, err := GetCollection().Find(ctx, filter)Use regex in $in query,...
View ArticleAnswer by Shubham Kakkar for How to query MongoDB with "like"?
{ $text: { $search: filter } }, ); if (indexSearch.length) { return indexSearch; } return UserModel.find( { $or: [ { firstName: { $regex: `^${filter}`, $options: 'i' } }, { lastName: { $regex:...
View ArticleAnswer by turivishal for How to query MongoDB with "like"?
Using javascript RegExpsplit name string by space and make array of wordsmap to iterate loop and convert string to regex of each word of namelet name = "My Name".split("").map(n => new...
View ArticleAnswer by Priyanka Wagh for How to query MongoDB with "like"?
Above answers are perfectly answering the questions about core mongodb query. But when using pattern based search query such as:{"keywords":{ "$regex": "^toron.*"}}or{"keywords":{ "$regex":...
View ArticleAnswer by Binita Bharati for How to query MongoDB with "like"?
Just in case, someone is looking for a 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.*/]}})
View ArticleAnswer by Sahil Thummar for How to query MongoDB with "like"
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",...
View ArticleAnswer by Sahil Patel for How to query MongoDB with "like"
If you want to use mongo JPA like query you should try this.@Query("{ 'title' : { $regex: '^?0', $options: 'i' } }")List<TestDocument> findLikeTitle(String title);
View ArticleAnswer by Kerem Atasen for How to query MongoDB with "like"
It works too:db.getCollection('collection_name').find({"field_name": /^searched_value/})
View Article