Discussions
distinct on multiple fields gives incomplete results
Hi,
9 years ago by Rudi
Need to add two values in sum
var aggregatedObject = new jinqJs()
.from(data)
.groupBy('strDEPTNAME')
.sum( parseFloat('decOPPATPAY') + parseFloat('decOPCOMPAY'))
.select();
9 years ago by syed noor
sum, avg, min, max... avoid string number
I hope this will help to solve the problem of string number
9 years ago by rongxike
