码迷,mamicode.com
首页 > 数据库 > 详细

Sql server行列转换

时间:2015-05-09 16:20:48      阅读:144      评论:0      收藏:0      [点我收藏+]

标签:

将列表转换为透视表的方法

技术分享

SELECT kh as 款号,pm as 品名,ys as 颜色
,isnull([95],0)as 95
,isnull([100],0)as 100
,isnull([105],0)as 105
,isnull([110],0)as 110
,isnull([115],0)as 115
FROM(select * from hj)as a
pivot(
max([sl]) for [cm] in([95],[100],[105],[110],[115])
)as b

 

Sql server行列转换

标签:

原文地址:http://www.cnblogs.com/vscs/p/4489911.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!