gpt4 book ai didi

json - N1QL 数组查询 where 条件检查内部元素

转载 作者:太空宇宙 更新时间:2023-11-04 03:05:54 25 4
gpt4 key购买 nike

我有像下面这样的 JSON

{
"_id": "000fad10-b2de-11e6-92de-632a9b1d21d9",
"_type": "Company",
"status": 1,
"transactions": [
{
"completed": 1,
"currency": "USD",
"date": "2015-12-01T18:30:00.000Z",
"method": 0,
"type": 0
}
]
}

我想像下面的查询一样运行

select * from MyBucket where transactions.method in (0,3);

我怎样才能在N1QL中做到这一点?

最佳答案

试试这个:

SELECT * FROM MyBucket b UNNEST b.transactions t WHERE t.method in [0,3];

保留这个cheatsheet

关于json - N1QL 数组查询 where 条件检查内部元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40800858/

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