“как mongodb” Ответ

mongodb найдет как

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

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

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

как mongodb

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

Как запросить mongodb с

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

Как в MongoDB

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

Как в MongoDB

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

Mongo DB нравится

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

Ответы похожие на “как mongodb”

Вопросы похожие на “как mongodb”

Смотреть популярные ответы по языку

Смотреть другие языки программирования