使用列名取消透视

2022-01-30 00:00:00 sql tsql sql-server-2008 sql-server unpivot

我有一个 StudentMarks 表,其中包含 Name、Maths、Science、English 列.数据就像

I have a table StudentMarks with columns Name, Maths, Science, English. Data is like

Name,  Maths, Science, English  
Tilak, 90,    40,      60  
Raj,   30,    20,      10

我想把它安排成如下:

Name,  Subject,  Marks
Tilak, Maths,    90
Tilak, Science,  40
Tilak, English,  60

使用 unpivot 我是能够正确获取Name、Marks,但无法将源表中的列名获取到所需结果集中的Subject列.

With unpivot I am able to get Name, Marks properly, but not able to get the column name in the source table to the Subject column in the desired result set.

我怎样才能做到这一点?

How can I achieve this?

到目前为止,我已经完成了以下查询(获取姓名、标记)

I have so far reached the following query (to get Name, Marks)

select Name, Marks from studentmarks
Unpivot
(
  Marks for details in (Maths, Science, English)

) as UnPvt

推荐答案

您的查询非常接近.您应该能够使用以下内容,其中包括最终选择列表中的 subject:

Your query is very close. You should be able to use the following which includes the subject in the final select list:

select u.name, u.subject, u.marks
from student s
unpivot
(
  marks
  for subject in (Maths, Science, English)
) u;

参见 SQL Fiddle 演示

相关文章