“Как в 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

Как в MongoDB

-- mongodb
db.people.find( { user_id: /bc/ } )
-- or 
db.people.find( { user_id: { $regex: /bc/ } } )
-- sql 
SELECT *
FROM people
WHERE user_id like "%bc%"
-- mongodb
db.people.find( { user_id: /^bc/ } )
-- or 
db.people.find( { user_id: { $regex: /^bc/ } } )
--sql 
SELECT *
FROM people
WHERE user_id like "bc%"
Tiny Coders

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

Вопросы похожие на “Как в MongoDB”

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

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