第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

TSQL PIVOT多列

TSQL PIVOT多列

智慧大石 2019-12-03 14:19:56
我有下表,但不確定是否可以旋轉(zhuǎn)它并保留所有標簽。RATIO               RESULT   SCORE   GRADECurrent Ratio       1.294    60      GoodGearing Ratio       0.3384   70      GoodPerformance Ratio   0.0427   50      SatisfactoryTOTAL               NULL     180     Good我會承認對樞軸的使用不是很好,因此經(jīng)過幾次嘗試導致此輸出:SELECT 'RESULT' AS 'Ratio'  ,[Current Ratio] AS 'Current Ratio'  ,[Gearing Ratio] AS 'Gearing Ratio'  ,[Performance Ratio] AS 'Performance Ratio'  ,[TOTAL] AS 'TOTAL'FROM(  SELECT RATIO, RESULT   FROM GRAND_TOTALS) AS SRECPIVOT (  MAX(RESULT)   FOR RATIO IN ([Current Ratio],[Gearing Ratio], [Performance Ratio], [TOTAL])) AS PVT結(jié)果如下:Ratio    Current Ratio   Gearing Ratio   Performance RatioResult   1.294           0.3384          0.0427我承認在下一步該怎么做才能產(chǎn)生所需的結(jié)果時感到很沮喪:Ratio    Current Ratio   Gearing Ratio   Performance Ratio   TOTALResult   1.294           0.3384          0.0427              NULLScore    60              70              50                  180Grade    Good            Good            Satisfactory        Good
查看完整描述

1 回答

?
蝴蝶不菲

TA貢獻1810條經(jīng)驗 獲得超4個贊

由于要轉(zhuǎn)動多列數(shù)據(jù),我會首先建議unpivoting的result,score并且grade列,所以你不必多列,但你將有多個行。


根據(jù)您的SQL Server版本,您可以使用UNPIVOT函數(shù)或CROSS APPLY。取消數(shù)據(jù)透視的語法類似于:


select ratio, col, value

from GRAND_TOTALS

cross apply

(

  select 'result', cast(result as varchar(10)) union all

  select 'score', cast(score as varchar(10)) union all

  select 'grade', grade

) c(col, value)

請參閱帶有演示的SQL Fiddle。一旦數(shù)據(jù)被取消透視,就可以應用PIVOT功能:


select ratio = col,

  [current ratio], [gearing ratio], [performance ratio], total

from

(

  select ratio, col, value

  from GRAND_TOTALS

  cross apply

  (

    select 'result', cast(result as varchar(10)) union all

    select 'score', cast(score as varchar(10)) union all

    select 'grade', grade

  ) c(col, value)

) d

pivot

(

  max(value)

  for ratio in ([current ratio], [gearing ratio], [performance ratio], total)

) piv;

請參閱帶有演示的SQL Fiddle。這將為您提供結(jié)果:


|  RATIO | CURRENT RATIO | GEARING RATIO | PERFORMANCE RATIO |     TOTAL |

|--------|---------------|---------------|-------------------|-----------|

|  grade |          Good |          Good |      Satisfactory |      Good |

| result |       1.29400 |       0.33840 |           0.04270 |    (null) |

|  score |      60.00000 |      70.00000 |          50.00000 | 180.00000 |


查看完整回答
反對 回復 2019-12-03
  • 1 回答
  • 0 關(guān)注
  • 687 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學習伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號