MySQL 中是否有针对行而不是针对列的 MAX 函数?

是的,您可以使用GREATEST()from MySQL 从行(而不是列)检查最大值。让我们首先创建一个表 -

mysql> create table DemoTable
   (
   Value1 int,
   Value2 int,
   Value3 int
   );

使用插入命令在表中插入记录 -

mysql> insert into DemoTable values(190,395,322);

使用 select 语句显示表中的所有记录 -

mysql> select *from DemoTable;
+--------+--------+--------+
| Value1 | Value2 | Value3 |
+--------+--------+--------+
| 190    | 395    | 322    |
+--------+--------+--------+
1 row in set (0.00 sec)

这是获取行(不是列)的 MAX 的查询 -

mysql> select greatest(Value1,Value2,Value3) as GreaterValue from DemoTable;

这将产生以下输出 -

+--------------+
| GreaterValue |
+--------------+
| 395          |
+--------------+
1 row in set (0.04 sec)