gpt4 book ai didi

azure - Postman 中的 Cosmos 查询Where 子句问题

转载 作者:行者123 更新时间:2023-12-02 08:13:29 26 4
gpt4 key购买 nike

使用 where 子句时,我无法让正文返回结果。它似乎不喜欢 f.RequestPath 的值。

{      
"query": "SELECT * FROM AppLogs f WHERE f.RequestPath in ("/payments/post-sales", "/payments/pre-sales", "/payments/refunds", "/payments", "/Payments")"
}

Postman Error Message After adding Where clause

只要这样做,查询就可以工作。我认为这可能与 Requestpath 值中的斜杠有关,但不知道如何解决这个问题。需要使用转义字符吗?你会怎么做?任何帮助将不胜感激。

{      
"query": "SELECT * FROM AppLogs f WHERE 1=1"
}

Query Works without the Where clause for Request Path

最佳答案

请尝试将查询中的双引号替换为单引号。像这样的东西:

{      
"query": "SELECT * FROM AppLogs f WHERE f.RequestPath in ('/payments/post-sales', '/payments/pre-sales', '/payments/refunds', '/payments', '/Payments')"
}

更新

正如 @MatiasQuaranta 在评论中提到的,您还可以通过执行以下操作来转义查询中的双引号:

"query": "SELECT * FROM AppLogs f WHERE f.RequestPath in (\"/payments/post-sales\", \"/payments/pre-sales\", \"/payments/refunds\", \"/payments\", \"/Payments\")"

关于azure - Postman 中的 Cosmos 查询Where 子句问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/75034568/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com