编号 季度 施肥次数 施肥量 a1 1 1 50 a1 1 2 30 a2 2 1 20 转换成这样 编号 第一季度第一次施肥 第一季度第二次施肥量 第二季度第一次施肥量 a1 50 30 a2 20 使用CASE进行处理。 select 编号, sum( 第一季度第一次施肥) 第一季度第一次施肥, sum( 第一季度第二次施肥量) 第一季度第二次施肥, sum( 第二季度第一次施肥) 第二季度第一次施肥量 from ( select 编号 case when 季度=1 and 施肥次数=1 then 施肥量 else null end 第一季度第一次施肥, case when 季度=1 and 施肥次数=2 then 施肥量 else null end 第一季度第二次施肥, case when 季度=2 and 施肥次数=1 then 施肥量 else null end 第二季度第一次施肥量 from 表 ) a group by a.编号 另外 Oracle垂直水平 设有如下表 T A B ----------- 1 01 1 02 1 03 2 04 2 05 3 06 执行如下 sql
select a,replace(max(sys_connect_by_path(b,';')),';','') b from (select a,b, (row_number() over(order by a,b) + dense_rank() over(order by a)) rn, min(b) over(partition by a) mb from t ) start with b = mb connect by rn-1 = prior rn group by a
以下结果可以得到 A B -------------------- 1 010203 2 0405 3 06