寻找连接不同文档的字符串

时间:2018-12-12 22:28:35

标签: mongodb

我有一个名为“ textCol”的集合,并且在其中有以下文档:

[{"_id": ..., "n": 1, "text": "abc"},
{"_id": ..., "n": 2, "text": "def"},
{"_id": ..., "n": 3, "text": "ghi"}]

现在,我如何查找类似“ bcde”的字符串作为结果获得前两个文档(那些带有“ text:abc”和“ text:def”的文档)? 因此,看起来像“ bcde”的东西我想获得以下结果:

[{"_id": ..., "n": 1, "text": "abc"},
{"_id": ..., "n": 2, "text": "def"}]

预先感谢您的帮助。

0 个答案:

没有答案