使用 n1ql 在嵌套数组中获取不同的项目
Get distinct item in nested array using n1ql
我有这样的文档结构
{
"tags": ["a", "b", "c"]
}
我找到了使用 map & reduce 函数的方法。
http://guide.couchdb.org/draft/cookbook.html
但是,如果我想使用 n1ql 执行相同的查询,我该怎么做呢?
提前致谢。
您要查找的是 N1QL 中的 nested operators。
我有这样的文档结构
{
"tags": ["a", "b", "c"]
}
我找到了使用 map & reduce 函数的方法。
http://guide.couchdb.org/draft/cookbook.html
但是,如果我想使用 n1ql 执行相同的查询,我该怎么做呢?
提前致谢。
您要查找的是 N1QL 中的 nested operators。