min

min

min 介绍

min(expr) - 返回 expr 的最小值。

Examples:

> SELECT min(col) FROM VALUES (10), (-1), (20) AS tab(col);
 -1

Since: 1.0.0