我正在寻找一个操作符,它允许我检查字段的值是否包含某个字符串。

喜欢的东西:

db.users.findOne({$contains:{"username":"son"}})

这可能吗?


当前回答

由于这是在搜索引擎的第一个点击之一,上面没有一个似乎适用于MongoDB 3。X,这里有一个正则表达式搜索是有效的:

db.users.find( { 'name' : { '$regex' : yourvalue, '$options' : 'i' } } )

不需要创建额外的索引或类似的。

其他回答

下面是通过Python连接MongoDB时必须做的事情

db.users.find({"username": {'$regex' : '.*' + 'Son' + '.*'}})

你也可以使用一个变量名来代替'Son',因此字符串连接。

这是完成这项任务最简单的方法

如果您希望查询区分大小写

db.getCollection("users").find({'username':/Son/})

如果您希望查询不区分大小写

db.getCollection("users").find({'username':/Son/i})

理想答案其使用指标 I选项不区分大小写

db.users.findOne({"username" : new RegExp(search_value, 'i') });

对于聚合框架


领域搜索

('$options': 'i'用于不区分大小写搜索)

db.users.aggregate([
    {
        $match: {
            'email': { '$regex': '@gmail.com', '$options': 'i' }
        }
    }
]);

全文检索

(仅适用于文本索引的字段

db.articles.aggregate([
    {
        $match: { $text: { $search: 'brave new world' } }
    }
])

https://docs.mongodb.com/manual/reference/sql-comparison/

http://php.net/manual/en/mongo.sqltomongo.php

MySQL

SELECT * FROM users WHERE username LIKE "%Son%"

MongoDB

db.users.find({username:/Son/})