mysql – 在行和回显编号和列名中查找最高值

前端之家收集整理的这篇文章主要介绍了mysql – 在行和回显编号和列名中查找最高值前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

经过几个小时后,我找不到答案.

首先我的桌子

  id | one | two | three | four | five | galname
-------------------------------------------------
  1  |  2  |  5  |   23  |  4   | 5    |  Bob

如何在行中找到最高值并显示colomun名称.

three - 23
最佳答案
 select  id,GREATEST(one,two,three,four,five) value,case GREATEST(one,five)
         when one then 'one'
         when two then 'two'
         when three then 'three'
         when four then 'four'
         when five then 'five' end column_name
 from your_table        
原文链接:https://www.f2er.com/mysql/433017.html

猜你在找的MySQL相关文章