“wie MongoDB” Code-Antworten

MongoDB Fund wie

db.users.find({"name": /.*m.*/});

db.users.find({"name": /m/});

Items.find({"description": {$regex: ".*" + variable + ".*"}}).fetch();
Concerned Chipmunk

wie MongoDB

db.collection.find( { "url": { "$regex": ".*a.*"} } );
BlueMoon

wie man MongoDB mit ähnlichem abfragt

db.users.find({"name": /m/})
or
db.users.find({"name": /.*m.*/})

You're looking for something that contains "m" somewhere
(SQL's '%' operator is equivalent to Regexp's '.*'), 
not something that has "m" anchored to the beginning of the string.
BlueMoon

Wie in MongoDb

db.users.find({"name": /m/})
Babak

Wie in MongoDb

db.users.find({"name": /.*m.*/})
Babak

Mongo db wie

db.users.find({name: /ro$/}) //like '%ro'
Adorable Ape

Ähnliche Antworten wie “wie MongoDB”

Fragen ähnlich wie “wie MongoDB”

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen