Counts the no of entries for that column. :samp:`Count("{FIELD_NAME}")`
| 85 | |
| 86 | |
| 87 | class Count(Aggregate): |
| 88 | """ |
| 89 | Counts the no of entries for that column. |
| 90 | |
| 91 | :samp:`Count("{FIELD_NAME}")` |
| 92 | """ |
| 93 | |
| 94 | database_func = functions.Count |
| 95 | |
| 96 | |
| 97 | class Sum(Aggregate): |
no outgoing calls
searching dependent graphs…