MongoDB
 sql >> Database >  >> NoSQL >> MongoDB

Come posso usare l'operatore LIKE su mangusta?

usa $regex in mongodb

come usare l'espressione regolare

esempio

select * from table where abc like %v%

in mongo

 var colName="v";
 models.customer.find({ "abc": { $regex: '.*' + colName + '.*' } },
   function(err,data){
         console.log('data',data);
  });

La tua query assomiglia a

var name="john";
UserSchema.find({name: { $regex: '.*' + name + '.*' } }).limit(5);