如何为这个特定的 table 编写 Pivot 子句?

How to write the Pivot clause for this specific table?

我正在使用 SQL Server 2014。以下是我的 table (t1):

的摘录
Name    RoomType    Los   RO   BB     HB    FB   StartDate    EndDate     CaptureDate
A         DLX        7    0    0     154   200  2022-01-01   2022-01-07  2021-12-31
B         SUP        7    110  0       0     0  2022-01-01   2022-01-07  2021-12-31
C         COS        7    0    0     200   139  2022-01-01   2022-01-07  2021-12-31
D         STD        7    0    75      0   500  2022-01-01   2022-01-07  2021-12-31

我需要一个 Pivot 查询来将上面的 table 转换成下面的输出:

Name    RoomType     Los   MealPlan   Price     StartDate    EndDate     CaptureDate
 A        DLX         7      RO         0       2022-01-01   2022-01-07   2021-12-31 
 A        DLX         7      BB         0       2022-01-01   2022-01-07   2021-12-31
 A        DLX         7      HB         154     2022-01-01   2022-01-07   2021-12-31
 A        DLX         7      FB         200     2022-01-01   2022-01-07   2021-12-31
 B        SUP         7      RO         110     2022-01-01   2022-01-07   2021-12-31 
 B        SUP         7      BB         0       2022-01-01   2022-01-07   2021-12-31
 B        SUP         7      HB         0       2022-01-01   2022-01-07   2021-12-31
 B        SUP         7      FB         0       2022-01-01   2022-01-07   2021-12-31
 C        COS         7      RO         0       2022-01-01   2022-01-07   2021-12-31 
 C        COS         7      BB         0       2022-01-01   2022-01-07   2021-12-31
 C        COS         7      HB         200     2022-01-01   2022-01-07   2021-12-31
 C        COS         7      FB         139     2022-01-01   2022-01-07   2021-12-31
 D        STD         7      RO         0       2022-01-01   2022-01-07   2021-12-31 
 D        STD         7      BB         75      2022-01-01   2022-01-07   2021-12-31
 D        STD         7      HB         0       2022-01-01   2022-01-07   2021-12-31
 D        STD         7      FB         500     2022-01-01   2022-01-07   2021-12-31

我看过以下文章,但它似乎没有解决我的问题:

SQL Server Pivot Clause

我做了一些进一步的研究,但我没有访问任何提供此问题解决方案的站点。

非常感谢任何帮助。

你实际上想要一个 UNPIVOT 这里 (comparison docs)。

SELECT Name, RoomType, Los, MealPlan, Price, 
       StartDate, EndDate, CaptureDate
FROM dbo.t1
UNPIVOT (Price FOR MealPlan IN ([RO],[BB],[HB],[FB])) AS u;