Returns smallest value in the column. :samp:`Min("{FIELD_NAME}")`
| 117 | |
| 118 | |
| 119 | class Min(Aggregate): |
| 120 | """ |
| 121 | Returns smallest value in the column. |
| 122 | |
| 123 | :samp:`Min("{FIELD_NAME}")` |
| 124 | """ |
| 125 | |
| 126 | database_func = functions.Min |
| 127 | populate_field_object = True |
| 128 | |
| 129 | |
| 130 | class Avg(Aggregate): |
no outgoing calls