0

我有 MongoDB 作为数据源。我想在 redash 中查询,这将等同于以下内容:-

db.collection.find({“templateId”:/XYZ$/})

templateId此查询返回集合中键以字符串 XYZ 结尾的所有数据。我如何在 redash JSON 中使用它?

还请帮助在 Redash 中使用 $exist。

4

2 回答 2

0

从谷歌搜索同样的问题到这里。

在我看来,下一个管道步骤有效:

{"$match": {"templateId": {"$regex": "XYZ$"}}}
于 2019-12-06T11:09:01.460 回答
0

我将此示例与 Redash 一起使用。

{
    "collection": "Users",
    "query": {
        "Phone": {
            "$regex": "1234$"
        }
    }
}






于 2021-02-18T15:21:58.950 回答