The MIN function returns the minimum value of the expression.
MIN(expr)
| Parameters | Description |
|---|---|
<expr> | The expression needs to be obtained |
Returns the same data type as the input expression.
select MIN(scan_rows) from log_statis group by datetime;
+------------------+ | MIN(`scan_rows`) | +------------------+ | 0 | +------------------+