Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
165 views
in Technique[技术] by (71.8m points)

sql server - How to use pivot in SQL?

I have a table that looks like below:

enter image description here

Need to convert the same into the below format:

enter image description here

The data is at A,B, C level. Tried using case when as shown below but it is resulting in multiple rows. So thinking of using a pivot.

Select a,b,c,
       case when D = N and E = 1 then N1 = value,
       case when D = N and E = 2 then N2 = value,
       case when D = O and E = 1 then O1 = value,
       case when D = O and E = 2 then O2 = value,

Any help would be appreciated. Thank you!


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

Use aggregation:

Select a, b, c,
       max(case when D = 'N' and E = 1 then value end) as N1,
       max(case when D = 'N' and E = 2 then value end) as N2,
       max(case when D = 'O' and E = 1 then value end) as O1,
       max(case when D = 'O' and E = 2 then value end) as O2
from t
group by a, b, c;

Note that this also fixes the logic in the case expressions.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...