如何使用算术运算创建 Cloudant 查询

How to create a Cloudant Query with arithmetic operations

我需要在我拥有的这个 Cloudant 数据库中收集文档,其中两个属性的总和等于其他值。

在SQL,我会表演这样的

select * from table where property1 + property2 > 20;

并且它会成功地带来所有匹配该操作的结果。

如何比较 Cloudant 查询中两个属性的值执行类似搜索?

我不认为 mango-style queries provide the functionality to do such arithmetic expressions. I suggest taking a look at regular views. You might even want to use show functions 可以交互更新常量。