Bootstrap

sql 取出一行中最大值对应的字段名

原始数据

在这里插入图片描述

目标结果

在这里插入图片描述

实现思路

先把最大品类的字段添加到最后,作为值出现(sql中不能直接拿到字段名)
在查询最大值对应的字段名

添加最大值对应的字段名到值中
select
shop,
month,
dz,
fz,
sp,
case
   when dz>fz and dz>sp then 'dz'
   when fz>dz and fz>sp then 'fz'
   when sp>dz and sp>fz then 'sp'
  else null
end as `品类`
from
tablename;

在这里插入图片描述

查询最大值对应的字段名
with tmp as (
select
shop,
month,
dz,
fz,
sp,
case
   when dz>fz and dz>sp then 'dz'
   when fz>dz and fz>sp then 'fz'
   when sp>dz and sp>fz then 'sp'
  else null
end as `品类`
from
tablename)
select
shop,
month,
`品类`,
greatest(dz,fz,sp) as max
from
tmp;

在这里插入图片描述

简单写法

select
shop,
case 
   when dz>fz and dz>sp then 'dz'
   when fz>dz and fz>sp then 'fz'
   when sp>dz and sp>fz then 'sp'
   else null
end as `品类`, 
greatest(dz,fz,sp) as `最大金额`
from
tablename;

悦读

道可道,非常道;名可名,非常名。 无名,天地之始,有名,万物之母。 故常无欲,以观其妙,常有欲,以观其徼。 此两者,同出而异名,同谓之玄,玄之又玄,众妙之门。

;