SQL查询语句行转列横向显示

SQL查询语句行转列横向显示  

2011-03-15 10:00:14|  分类: sql |  标签:resource   |举报 |字号 订阅

 
 

在SQL查询语句行转列横向显示中access中没有CASE,要用IIF代替

select  iif(sex= ‘1 ‘, ‘男 ‘, ‘女 ‘)  from  tablename

 

示例1:

SQL查询语句行转列横向显示

 

select country, sum(case when type=‘A‘ then money end) as A, sum(case when type=‘B‘ then money end) as B, sum(case when type=‘C‘ then money end) as C from table1 group by country

 

示例2:

/* 问题:假设有张学生成绩表(tb)如下: 姓名 课程 分数 张三 语文 74 张三 数学 83 张三 物理 93 李四 语文 74 李四 数学 84 李四 物理 94 想变成(得到如下结果)
姓名 语文 数学 物理
---- ---- ---- ---- 李四 74   84   94 张三 74   83   93 ------------------- */
create table tb(姓名 varchar(10) , 课程 varchar(10) , 分数 int) insert into tb values(张三 , 语文 , 74) insert into tb values(张三 , 数学 , 83) insert into tb values(张三 , 物理 , 93) insert into tb values(李四 , 语文 , 74) insert into tb values(李四 , 数学 , 84) insert into tb values(李四 , 物理 , 94) go
--SQL SERVER 2000 静态SQL,指课程只有语文、数学、物理这三门课程。(以下同) select 姓名 as 姓名 , max(case 课程 when 语文then 分数 else 0 end) 语文, max(case 课程 when 数学then 分数 else 0 end) 数学, max(case 课程 when 物理then 分数 else 0 end) 物理 from tb group by 姓名
--SQL SERVER 2000 动态SQL,指课程不止语文、数学、物理这三门课程。(以下同) declare @sql varchar(8000) set @sql = ‘select 姓名 select @sql = @sql + ‘ , max(case 课程 when ‘‘‘ + 课程 + ‘‘‘ then 分数 else 0 end) [‘ + 课程 + ‘]‘ from (select

上一篇:C#读取Oracle Spatial的sdo_geometry


下一篇:mysql 5.5 编码设置为utf8 转载自:http://outofcontrol.ca/thoughts/comments/change-mysql-5.5-default-character-set-to-utf8