Help With Extracting a SUM from the database

I want to use the sum of some values from the database.

I have this query called booking_allocations:

Which I assumed would return the sum of the fields found. However it is only returning single field value:

What do I need to do in order to return the sum, so for example to return
amount_allocated_local_sum = 360.00…?

And how do I then access that value in a Set Value?

1 Like

What values do you want to sum exactly?
All the rows values in a column from your database table, like:

Yes!

So in my example, 210+150=360…

Adding one column with the SUM Aggregate Function added will return the total sum of all the rows values:

Screenshot_34

Thanks for that Teodor…

So am I not getting a sum of all the rows returned because I also asked to return allocations.id not as a sum?

Do all columns in the query need to be SUM aggregate for it to work?

I guess in that case I need to use .sum() in my code to get the sum…

Umm not sure i understand your question.
If you want to add a sum of a column in your database table, then you add it in the query builder and apply the aggregate function SUM to it.

Yes, but if you look at my example, I’ve done that and I’m not getting the sum returned and I’m trying to work out why… hence my question related to my example that isn’t working.

Well you added an ID column there, which is used as a GROUP BY for your query, which means that all the uniquer ids will be listed on a new row …

Okay, that makes sense now. I do need the individual id values, so I need to do a .sum() in the code.

So many subtleties to learn…

Thanks for your help! :slight_smile:

Teodor, I’m not finding it easy to work out how to do the sum() in the code.

So in your example…

if your query was not an aggregate, how would you assign like this?

Set Value quantity_all = [sum of all products.quantityInStock as a number]
SO YOU CAN THEN SAY:
Set Value quantity_all_plus_one = {{quantity_all + 1}}

Thanks!
Antony.

{{query1.sum("quantityInStock")}}

Returns the Sum of the quantityInStock column returned by your query1.

{{query1.sum("quantityInStock") + 1}}

Returns the Sum of the quantityInStock column returned by your query1 + 1.

1 Like