Home > Backend Development > PHP Tutorial > MYSQL查询 三列中的最大值

MYSQL查询 三列中的最大值

WBOY
Release: 2016-06-06 20:42:09
Original
2364 people have browsed it

如题: mysql 的数据结构 如下

MYSQL查询  三列中的最大值

查询 A B C 三列中的最大值 目前已经有一条sql 可以实现了 想问各位 还可以有其他更好的idea吗..

<code>select id,a,b,c,(a+((b+c+abs(b-c))/2)+abs(a-(b+c+abs(b-c))/2))/2 from test; 
</code>
Copy after login
Copy after login

补充 下午 跟别人 又 学到了一个 greatest 函数

<code>select id,a,b,c,greatest(a,b,c) as max from XXX
</code>
Copy after login
Copy after login

回复内容:

如题: mysql 的数据结构 如下

MYSQL查询  三列中的最大值

查询 A B C 三列中的最大值 目前已经有一条sql 可以实现了 想问各位 还可以有其他更好的idea吗..

<code>select id,a,b,c,(a+((b+c+abs(b-c))/2)+abs(a-(b+c+abs(b-c))/2))/2 from test; 
</code>
Copy after login
Copy after login

补充 下午 跟别人 又 学到了一个 greatest 函数

<code>select id,a,b,c,greatest(a,b,c) as max from XXX
</code>
Copy after login
Copy after login

<code>mysql> set @a = 5, @b = 6, @c = 11;
Query OK, 0 rows affected (0.00 sec)

mysql> select if(@a > @b, if(@a > @c, @a, @c), if(@b > @c, @b, @c)) max;
+------+
| max  |
+------+
|   11 |
+------+
1 row in set (0.00 sec)
</code>
Copy after login

select greatest(a,b,c) max from table_name

.. 查出来 程序处理不行吗?

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template