Calculates and returns the minimum and maximum values of a particular column in a table.
Parameters
Name of the table on which the operation will be performed. Must be an existing table, in [schema_name.]table_name format, using standard name resolution rules.
Name of a column or an expression of one or more column on which the min-max will be calculated.
Optional parameters. The default value is an empty dict ( ).
Returns
A dict with the following entries–
Minimum value of the input parameter column_name.
Maximum value of the input parameter column_name.
Additional information. Allowed keys are:
min_string – The minimum value of input parameter column_name, stored as a byte vector.
max_string – The maximum value of input parameter column_name, stored as a byte vector.
The default value is an empty dict ( ).