“Как запросить 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 с”

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

Больше похожих ответов на “Как запросить mongodb с” по Shell/Bash

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

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