-
Notifications
You must be signed in to change notification settings - Fork 664
How to use aggregate functions using node js
Mathias Rangel Wulff edited this page Jun 13, 2015
·
3 revisions
Source: StackOverflow.com
There is a json which has the array called as chargeamountunitLevel. I want to sum-up the chargeAmount by grouping by the chargeAmountUnit. The Input json:
"chargeamountunitLevel": [
{
"chargeAmount": 4,
"chargeAmountUnit": "per hour",
"currencyCode": "USD"
},
{
"chargeAmount": 50,
"chargeAmountUnit": "per hour",
"currencyCode": "USD"
},
{
"chargeAmount": 25,
"chargeAmountUnit": "per month",
"currencyCode": "USD"
},
{
"chargeAmount": 25,
"chargeAmountUnit": "per month",
"currencyCode": "USD"
}
]
The result might be as follows:
"chargeamountunitLevel": [
{
"chargeAmount": 54,
"chargeAmountUnit": "per hour",
"currencyCode": "USD"
},
{
"chargeAmount": 50,
"chargeAmountUnit": "per month",
"currencyCode": "USD"
}
]
You can group and aggregate data with AlaSQL Node.js module. It works in browser and Node.js.
var alasql = require('alasql');
var res = alasql('SELECT SUM(chargeAmount) AS chargeAmount, chargeAmountUnit, currencyCode \
FROM ? GROUP BY chargeAmountUnit, currencyCode',[chargeamountunitLevel ]);
You can try this example (in browser version) in jsFiddle.
To install AlaSQL npm package use:
npm install alasql
© 2014-2024, Andrey Gershun & Mathias Rangel Wulff
Please help improve the documentation by opening a PR on the wiki repo