数据源:1111111111111111111111111
问题:1111111111111111111
数据源:1111111111111111111111111
用的是什么数据库?还有数据库版本是多少?
另外,为什么前面都是累加,反而10D以上又不累加了?
为什么你的case when 不能显示0-5?既然可以3-5那么没理由不能0-5,除非你限制了where条件,建议你先把原结构放出来,可能更容易处理,否则就得像下面这个sql一样要去解析你拼出来的这个字符串了
with t as
(
select 2 月份,'0-3D' 上架交付 ,1 计数,10 入库数量 union all
select 2 月份,'10D以上' 上架交付 ,1 计数,10 入库数量 union all
select 2 月份,'3-5D' 上架交付 ,1 计数,10 入库数量 union all
select 2 月份,'5-7D' 上架交付 ,1 计数,10 入库数量 union all
select 2 月份,'7-10D' 上架交付 ,1 计数,10 入库数量
)
SELECT t.*,
case 上架交付 when '10D以上' then 计数 else sum(计数) over(partition by 月份 order by
case 上架交付
when '0-3D' THEN 1
when '3-5D' THEN 2
when '5-7D' THEN 3
when '7-10D' THEN 4
when '10D以上' THEN 5
END
) end 累加计数 FROM t
对于某一行要进行重复聚合,要么查多次来union all,要么在不同的字段来case when 后再做一次行列转换
select 月份,上架交付,次数 from
(select 月份,
count(case
when 上架时效<=3 then 1 end) a,
count(case
WHEN 上架时效<=5 then 1 end) b,
count(case
when 上架时效<=7 then 1 end) c,
count(case
when 上架时效<=10 then 1 end) d,
count(case
when 上架时效>10 then 1 end) e
from (select
month(审核时间) 月份,
采购单号,
(UNIX_TIMESTAMP(上架时间) - UNIX_TIMESTAMP(审核时间))/60/60/24 上架时效,
入库数量
from
2月交付率数据源) t
group by 月份) t1
cross join lateral (
select a, '0-3D' union all
select b, '0-5D' union all
select c, '0-7D' union all
select d, '0-10D' union all
select e, '10D以上'
) as x(次数, 上架交付)