Adds up all the values for that column. :samp:`Sum("{FIELD_NAME}")`
| 95 | |
| 96 | |
| 97 | class Sum(Aggregate): |
| 98 | """ |
| 99 | Adds up all the values for that column. |
| 100 | |
| 101 | :samp:`Sum("{FIELD_NAME}")` |
| 102 | """ |
| 103 | |
| 104 | database_func = functions.Sum |
| 105 | populate_field_object = True |
| 106 | |
| 107 | |
| 108 | class Max(Aggregate): |
no outgoing calls