【轉】SQL Server將一列拆分紅多列

數據表中有一列數據,如圖1所示:html

圖1數據表htm

如今須要將該列數據分紅三列。blog

SQL 代碼以下所示:select

一、im

select 
max(case when F1%3=1 then F1 else 0 end) a,
max(case when F1%3=2 then F1 else 0 end) b,
max(case when F1%3=0 then F1 else 0 end) c
from HLR151
group by (F1-1)/3d3

效果:數據

二、db

select 
c1=a.F1,c2=b.F1,c3=c.F1
from HLR151 a
left join HLR151 b on b.F1=a.F1+1 
left join HLR151 c on c.F1=a.F1+2
where (a.F1-1)%3=0img

效果:di

三、

select 
max(case when (F1-1)/8=0 then F1 else 0 end) a,
max(case when (F1-1)/8=1 then F1 else 0 end) b,
max(case when (F1-1)/8=2 then F1 else 0 end) c
from HLR151
group by (F1-1)%8

 

效果:

 

 轉自:https://www.cnblogs.com/shuai/archive/2011/02/16/1956123.html

相關文章
相關標籤/搜索