8wDlpd.png
8wDFp9.png
8wDEOx.png
8wDMfH.png
8wDKte.png

SQL Server:列转行

Tran To 1月前

55 0

寻找优雅的(或任何)解决方案将列转换为行。这是一个例子:我有一张具有以下模式的表:[ID] [EntityID] [Indicator1] [Indicator2] [Indicator3] ... [Indicat...

寻找将列转换为行的优雅(或任何)解决方案。

这是一个例子:我有一张具有以下模式的表:

[ID] [EntityID] [Indicator1] [Indicator2] [Indicator3] ... [Indicator150]

以下是我想要得到的结果:

[ID] [EntityId] [IndicatorName] [IndicatorValue]

结果值将是:

1 1 'Indicator1' 'Value of Indicator 1 for entity 1'
2 1 'Indicator2' 'Value of Indicator 2 for entity 1'
3 1 'Indicator3' 'Value of Indicator 3 for entity 1'
4 2 'Indicator1' 'Value of Indicator 1 for entity 2'

等等..

这有意义吗?您对在 T-SQL 中查找的位置和如何完成它有什么建议吗?

帖子版权声明 1、本帖标题:SQL Server:列转行
    本站网址:http://xjnalaquan.com/
2、本网站的资源部分来源于网络,如有侵权,请联系站长进行删除处理。
3、会员发帖仅代表会员个人观点,并不代表本站赞同其观点和对其真实性负责。
4、本站一律禁止以任何方式发布或转载任何违法的相关信息,访客发现请向站长举报
5、站长邮箱:yeweds@126.com 除非注明,本帖由Tran To在本站《t-sql》版块原创发布, 转载请注明出处!
最新回复 (0)
  • xml 方法有个缺陷,就是无法对 >、<、& 等 xml 代码进行转义。另外,通过改写如下代码可以显著提高性能:select @colsUnpivot = stuff((select ','+quotename(C.column_name) as [text()] from information_schema.columns as C where C.table_name = 'yourtable' and C.column_name like 'Indicator%' for xml path(''), type).value('text()[1]','nvarchar(max)'), 1, 1, '')

返回
作者最近主题: