MongoDB
 sql >> Database >  >> NoSQL >> MongoDB

In MongoDB, come eseguire query in base al fatto che un campo stringa ne contenga un altro

Puoi farlo con $where creando un RegExp per string1 e poi testarlo con string2 :

db.test.find({$where: 'RegExp(this.string1).test(this.string2)'})

Tuttavia, se stai utilizzando MongoDB 3.4+, puoi farlo in modo più efficiente utilizzando $indexOfCP operatore di aggregazione:

db.test.aggregate([
    // Project  the index of where string1 appears in string2, along with the original doc.
    {$project: {foundIndex: {$indexOfCP: ['$string2', '$string1']}, doc: '$$ROOT'}},
    // Filter out the docs where the string wasn't found
    {$match: {foundIndex: {$ne: -1}}},
    // Promote the original doc back to the root
    {$replaceRoot: {newRoot: '$doc'}}
])

O più direttamente usando anche $redact :

db.test.aggregate([
    {$redact: {
        $cond: {
            if: { $eq: [{$indexOfCP: ['$string2', '$string1']}, -1]},
            then: '$$PRUNE',
            else: '$$KEEP'
        }
    }}
])