want to sum inner element with JSON in using N1QLCouchbase

故事扮演 提交于 2019-12-02 09:57:49

transactions[*].amount this is return array so first need to user array function

ARRAY_SUM

than use sum like below.

SELECT sum(ARRAY_SUM(transactions[*].amount)) FROM Inheritx WHERE ANY x IN transactions SATISFIES x.type in [0,4] END;
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!