码迷,mamicode.com
首页 > 其他好文 > 详细

行转列

时间:2016-09-20 10:27:09      阅读:144      评论:0      收藏:0      [点我收藏+]

标签:

select * from  (  select   case  

                                  when    A  then  a

                                  when    B  then  b

                                  when    C   then c

                        end    字段

                      from  表名

 )tb  pivot(max (字段) for  字段 in(a,b,c))a  order by 字段1 desc

 

 

select * from (select Year,Time,ID1,Name,
case
when substring(ID,5,2) = ‘14‘ then ‘A‘
when substring(ID,5,2) = ‘15‘ then ‘A‘
when substring(ID,5,2) = ‘04‘ then ‘B‘
when substring(ID,5,2) = ‘25‘ then ‘C‘
when substring(ID,5,2) = ‘26‘ then ‘D‘
end ID
from census_Detail
where Year=@strYear AND Time=@Times

)tb pivot( max(ID) FOR ID IN (A,B,C,D))a order by ID1 desc

ABCD可以根据需要在前台绑定只是一个栏位名

行转列

标签:

原文地址:http://www.cnblogs.com/whl4835349/p/5887498.html

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