| Parameter | Type | Description |
|---|---|---|
value | any | the value to be minimized |
Returns: any
Example
query:
SELECT MIN(close_value)
FROM sales_pipeline
result:
| min |
|---|
| 0 |
MIN returns the lowest value in a specified column and can be used with numeric and non-numeric data.
| Parameter | Type | Description |
|---|---|---|
value | any | the value to be minimized |
query:
SELECT MIN(close_value)
FROM sales_pipeline
result:
| min |
|---|
| 0 |