Parameter | Type | Description |
---|---|---|
value | any | the value to be maximized |
Returns: any
Example
query:
SELECT MAX(close_value)
FROM sales_pipeline
result:
max |
---|
30,288 |
MAX
returns the greatest value in a specified column and can be used with both numeric and non-numeric data.
Parameter | Type | Description |
---|---|---|
value | any | the value to be maximized |
query:
SELECT MAX(close_value)
FROM sales_pipeline
result:
max |
---|
30,288 |