选择MySQL中两列之和的最大值

要选择两列的总和的最大值,请使用聚合函数MAX()以及子查询。让我们首先创建一个表-

mysql> create table DemoTable1587
   -> (
   -> Value1 int,
   -> Value2 int
   -> );

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

mysql> insert into DemoTable1587 values(30,50);
mysql> insert into DemoTable1587 values(80,90);
mysql> insert into DemoTable1587 values(40,67);

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

mysql> select * from DemoTable1587;

这将产生以下输出-

+--------+--------+
| Value1 | Value2 |
+--------+--------+
|     30 |     50 |
|     80 |     90 |
|     40 |     67 |
+--------+--------+
3 rows in set (0.00 sec)

这是选择两列总和的最大值的查询-

mysql> select * from DemoTable1587
  -> where Value1+Value2=( select max(Value1+Value2) from DemoTable1587);

这将产生以下输出-

+--------+--------+
| Value1 | Value2 |
+--------+--------+
|     80 |     90 |
+--------+--------+
1 row in set (0.03 sec)