SQL语句问题

hbqc_zh 2009-11-20 05:14:46
表结构:

ID one two three
-- --- --- ----
1 10 A 0.1
2 10 B 0.2
3 5 A 0.3
4 5 B 0.4
5 5 C 0.5

想得到的结果:

T A B C
10 0.1 0.2
5 0.3 0.4 0.5



...全文
147 14 打赏 收藏 转发到动态 举报
写回复
用AI写文章
14 条回复
切换为时间正序
请发表友善的回复…
发表回复
gcw633 2009-11-20
  • 打赏
  • 举报
回复
8楼的强悍,学习了
小宏 2009-11-20
  • 打赏
  • 举报
回复

declare @tb2 table([ID] int,[one] int,[two] varchar(1),[three] numeric(2,1))
insert @tb2
select 1,10,'A',0.1 union all
select 2,10,'B',0.2 union all
select 3,5,'A',0.3 union all
select 4,5,'B',0.4 union all
select 5,5,'C',0.5

--select one ,
--max(case when two = 'A' then three else 0 end) as A,
--max(case when two = 'B' then three else 0 end) as B,
--max(case when two = 'C' then three else 0 end) as C
--from @tb2
--group by one


select one , [A] , [B] , [C]
from (select one , two , three from @tb2) a
pivot
(sum(three) for two in ([A],[B],[C]))b

one A B C
----------- --------------------------------------- --------------------------------------- ---------------------------------------
5 0.3 0.4 0.5
10 0.1 0.2 NULL

(2 行受影响)
pt1314917 2009-11-20
  • 打赏
  • 举报
回复
最后掉了个括号:
declare @sql varchar(8000)
set @sql='select one t'
select @sql=@sql+',['+two+']=sum(case two when '''+two+''' then three else null end)'
from (select distinct two from 表名)a
exec(@sql+' from 表名 group by one')

pt1314917 2009-11-20
  • 打赏
  • 举报
回复


declare @sql varchar(8000)
set @sql='select one t'
select @sql=@sql+',['+two+']=sum(case two when '''+two+''' then three else null end)'
from (select distinct two from 表名)a
exec(@sql+' from 表名 group by one'
--小F-- 2009-11-20
  • 打赏
  • 举报
回复
----------------------------------------------------------------
-- Author :fredrickhu(我是小F,向高手学习)
-- Date :2009-11-20 17:22:06
-- Version:
-- Microsoft SQL Server 2005 - 9.00.4035.00 (Intel X86)
-- Nov 24 2008 13:01:59
-- Copyright (c) 1988-2005 Microsoft Corporation
-- Developer Edition on Windows NT 5.2 (Build 3790: Service Pack 1)
--
----------------------------------------------------------------
--> 测试数据:[tb]
if object_id('[tb]') is not null drop table [tb]
go
create table [tb]([ID] int,[one] int,[two] varchar(1),[three] numeric(2,1))
insert [tb]
select 1,10,'A',0.1 union all
select 2,10,'B',0.2 union all
select 3,5,'A',0.3 union all
select 4,5,'B',0.4 union all
select 5,5,'C',0.5
--------------开始查询--------------------------
declare @sql varchar(8000)
set @sql = 'select one '
select @sql = @sql + ' , max(case two when ''' + two + ''' then three else 0 end) [' + two + ']'
from (select distinct two from tb) as a
set @sql = @sql + ' from tb group by one'
exec(@sql)

----------------结果----------------------------
/* one A B C
----------- --------------------------------------- --------------------------------------- ---------------------------------------
5 0.3 0.4 0.5
10 0.1 0.2 0.0

(2 行受影响)
*/
好汉坡 2009-11-20
  • 打赏
  • 举报
回复
--> 测试数据: @tb
declare @tb table (ID int,one int,two varchar(1),three numeric(2,1))
insert into @tb
select 1,10,'A',0.1 union all
select 2,10,'B',0.2 union all
select 3,5,'A',0.3 union all
select 4,5,'B',0.4 union all
select 5,5,'C',0.5

select T=one,
A=MAX(case when two='A' THEN three ELSE NULL END),
B=MAX(case when two='B' THEN three ELSE NULL END),
C=MAX(case when two='C' THEN three ELSE NULL END)
from @tb
GROUP BY ONE

T A B C
----------- --------------------------------------- --------------------------------------- ---------------------------------------
5 0.3 0.4 0.5
10 0.1 0.2 NULL
警告: 聚合或其他 SET 操作消除了空值。

(2 行受影响)
dawugui 2009-11-20
  • 打赏
  • 举报
回复
create table tb(ID int, one int, two varchar(10), three decimal(18,1))
insert into tb values(1 , 10, 'A' , 0.1 )
insert into tb values(2 , 10, 'B' , 0.2 )
insert into tb values(3 , 5 , 'A' , 0.3 )
insert into tb values(4 , 5 , 'B' , 0.4 )
insert into tb values(5 , 5 , 'C' , 0.5 )
go

--静态SQL,指two只有a,b,c,
select one T,
max(case two when 'A' then cast(three as varchar) else '' end) [A],
max(case two when 'B' then cast(three as varchar) else '' end) [B],
max(case two when 'C' then cast(three as varchar) else '' end) [C]
from tb
group by one
/*

T A B C
----------- ------------------------------ ------------------------------ ------------------------------
5 0.3 0.4 0.5
10 0.1 0.2

(所影响的行数为 2 行)
*/


--动态SQL,指two不止a,b,c,
declare @sql varchar(8000)
set @sql = 'select one T'
select @sql = @sql + ' , max(case two when ''' + two + ''' then cast(three as varchar) else '''' end) [' + two + ']'
from (select distinct two from tb) as a
set @sql = @sql + ' from tb group by one'
exec(@sql)
/*

T A B C
----------- ------------------------------ ------------------------------ ------------------------------
5 0.3 0.4 0.5
10 0.1 0.2

*/

drop table tb


有关行列转换其他内容见下:


/*
标题:普通行列转换(version 2.0)
作者:爱新觉罗.毓华(十八年风雨,守得冰山雪莲花开)
时间:2008-03-09
地点:广东深圳
说明:普通行列转换(version 1.0)仅针对sql server 2000提供静态和动态写法,version 2.0增加sql server 2005的有关写法。

问题:假设有张学生成绩表(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 distinct 课程 from tb) as a
set @sql = @sql + ' from tb group by 姓名'
exec(@sql)

--SQL SERVER 2005 静态SQL。
select * from (select * from tb) a pivot (max(分数) for 课程 in (语文,数学,物理)) b

--SQL SERVER 2005 动态SQL。
declare @sql varchar(8000)
select @sql = isnull(@sql + '],[' , '') + 课程 from tb group by 课程
set @sql = '[' + @sql + ']'
exec ('select * from (select * from tb) a pivot (max(分数) for 课程 in (' + @sql + ')) b')

---------------------------------

/*
问题:在上述结果的基础上加平均分,总分,得到如下结果:
姓名 语文 数学 物理 平均分 总分
---- ---- ---- ---- ------ ----
李四 74 84 94 84.00 252
张三 74 83 93 83.33 250
*/

--SQL SERVER 2000 静态SQL。
select 姓名 姓名,
max(case 课程 when '语文' then 分数 else 0 end) 语文,
max(case 课程 when '数学' then 分数 else 0 end) 数学,
max(case 课程 when '物理' then 分数 else 0 end) 物理,
cast(avg(分数*1.0) as decimal(18,2)) 平均分,
sum(分数) 总分
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 distinct 课程 from tb) as a
set @sql = @sql + ' , cast(avg(分数*1.0) as decimal(18,2)) 平均分 , sum(分数) 总分 from tb group by 姓名'
exec(@sql)

--SQL SERVER 2005 静态SQL。
select m.* , n.平均分 , n.总分 from
(select * from (select * from tb) a pivot (max(分数) for 课程 in (语文,数学,物理)) b) m,
(select 姓名 , cast(avg(分数*1.0) as decimal(18,2)) 平均分 , sum(分数) 总分 from tb group by 姓名) n
where m.姓名 = n.姓名

--SQL SERVER 2005 动态SQL。
declare @sql varchar(8000)
select @sql = isnull(@sql + ',' , '') + 课程 from tb group by 课程
exec ('select m.* , n.平均分 , n.总分 from
(select * from (select * from tb) a pivot (max(分数) for 课程 in (' + @sql + ')) b) m ,
(select 姓名 , cast(avg(分数*1.0) as decimal(18,2)) 平均分 , sum(分数) 总分 from tb group by 姓名) n
where m.姓名 = n.姓名')

drop table tb

------------------
------------------

/*
问题:如果上述两表互相换一下:即表结构和数据为:
姓名 语文 数学 物理
张三 74  83  93
李四 74  84  94
想变成(得到如下结果):
姓名 课程 分数
---- ---- ----
李四 语文 74
李四 数学 84
李四 物理 94
张三 语文 74
张三 数学 83
张三 物理 93
--------------
*/

create table tb(姓名 varchar(10) , 语文 int , 数学 int , 物理 int)
insert into tb values('张三',74,83,93)
insert into tb values('李四',74,84,94)
go

--SQL SERVER 2000 静态SQL。
select * from
(
select 姓名 , 课程 = '语文' , 分数 = 语文 from tb
union all
select 姓名 , 课程 = '数学' , 分数 = 数学 from tb
union all
select 姓名 , 课程 = '物理' , 分数 = 物理 from tb
) t
order by 姓名 , case 课程 when '语文' then 1 when '数学' then 2 when '物理' then 3 end

--SQL SERVER 2000 动态SQL。
--调用系统表动态生态。
declare @sql varchar(8000)
select @sql = isnull(@sql + ' union all ' , '' ) + ' select 姓名 , [课程] = ' + quotename(Name , '''') + ' , [分数] = ' + quotename(Name) + ' from tb'
from syscolumns
where name! = N'姓名' and ID = object_id('tb') --表名tb,不包含列名为姓名的其它列
order by colid asc
exec(@sql + ' order by 姓名 ')

--SQL SERVER 2005 动态SQL。
select 姓名 , 课程 , 分数 from tb unpivot (分数 for 课程 in([语文] , [数学] , [物理])) t

--SQL SERVER 2005 动态SQL,同SQL SERVER 2000 动态SQL。

--------------------
/*
问题:在上述的结果上加个平均分,总分,得到如下结果:
姓名 课程 分数
---- ------ ------
李四 语文 74.00
李四 数学 84.00
李四 物理 94.00
李四 平均分 84.00
李四 总分 252.00
张三 语文 74.00
张三 数学 83.00
张三 物理 93.00
张三 平均分 83.33
张三 总分 250.00
------------------
*/

select * from
(
select 姓名 as 姓名 , 课程 = '语文' , 分数 = 语文 from tb
union all
select 姓名 as 姓名 , 课程 = '数学' , 分数 = 数学 from tb
union all
select 姓名 as 姓名 , 课程 = '物理' , 分数 = 物理 from tb
union all
select 姓名 as 姓名 , 课程 = '平均分' , 分数 = cast((语文 + 数学 + 物理)*1.0/3 as decimal(18,2)) from tb
union all
select 姓名 as 姓名 , 课程 = '总分' , 分数 = 语文 + 数学 + 物理 from tb
) t
order by 姓名 , case 课程 when '语文' then 1 when '数学' then 2 when '物理' then 3 when '平均分' then 4 when '总分' then 5 end

drop table tb
icelovey 2009-11-20
  • 打赏
  • 举报
回复

declare @tb2 table([ID] int,[one] int,[two] varchar(1),[three] numeric(2,1))
insert @tb2
select 1,10,'A',0.1 union all
select 2,10,'B',0.2 union all
select 3,5,'A',0.3 union all
select 4,5,'B',0.4 union all
select 5,5,'C',0.5

--SQL 2005
select *
from (select [one], [two], [three] from @tb2) x
pivot
(
sum(three)
for two
in ([A],[B],[C])
) P
--SQL 2000
select [one] ,
max(case [two] when 'a' then [three] else 0 end) a,
max(case [two] when 'b' then [three] else 0 end) b,
max(case [two] when 'c' then [three] else 0 end) c
from (select [one], [two], [three] from @tb2) x
group by [one]

/*one a b c
----------- --------------------------------------- --------------------------------------- ---------------------------------------
5 0.3 0.4 0.5
10 0.1 0.2 0.0

(2 row(s) affected)
dawugui 2009-11-20
  • 打赏
  • 举报
回复
create table tb(ID int, one int, two varchar(10), three decimal(18,1))
insert into tb values(1 , 10, 'A' , 0.1 )
insert into tb values(2 , 10, 'B' , 0.2 )
insert into tb values(3 , 5 , 'A' , 0.3 )
insert into tb values(4 , 5 , 'B' , 0.4 )
insert into tb values(5 , 5 , 'C' , 0.5 )
go

select one T,
max(case two when 'A' then cast(three as varchar) else '' end) [A],
max(case two when 'B' then cast(three as varchar) else '' end) [B],
max(case two when 'C' then cast(three as varchar) else '' end) [C]
from tb
group by one

drop table tb

/*

T A B C
----------- ------------------------------ ------------------------------ ------------------------------
5 0.3 0.4 0.5
10 0.1 0.2

(所影响的行数为 2 行)
*/
sgtzzc 2009-11-20
  • 打赏
  • 举报
回复
[Quote=引用 1 楼 sgtzzc 的回复:]
SQL codeselect oneas T,sum(casewhen two='A'then threeelse0end)as A,sum(casewhen two='B'then threeelse0end)as B,sum(casewhen two='C'then threeelse0end)as Cfrom tbgroupby one
[/Quote]
---测试数据---
if object_id('[tb]') is not null drop table [tb]
go
create table [tb]([ID] int,[one] int,[two] varchar(1),[three] numeric(2,1))
insert [tb]
select 1,10,'A',0.1 union all
select 2,10,'B',0.2 union all
select 3,5,'A',0.3 union all
select 4,5,'B',0.4 union all
select 5,5,'C',0.5

---查询---
select one as T,
max(case when two='A' then ltrim(three) else '' end) as A,
max(case when two='B' then ltrim(three) else '' end) as B,
max(case when two='C' then ltrim(three) else '' end) as C
from tb
group by one

---结果---
T A B C
----------- ---------------------------------------- ---------------------------------------- ----------------------------------------
5 0.3 0.4 0.5
10 0.1 0.2

(所影响的行数为 2 行)
icelovey 2009-11-20
  • 打赏
  • 举报
回复

declare @tb2 table([ID] int,[one] int,[two] varchar(1),[three] numeric(2,1))
insert @tb2
select 1,10,'A',0.1 union all
select 2,10,'B',0.2 union all
select 3,5,'A',0.3 union all
select 4,5,'B',0.4 union all
select 5,5,'C',0.5

select *
from (select [one], [two], [three] from @tb2) x
pivot
(
sum(three)
for two
in ([A],[B],[C])
) P

/*
one A B C
----------- --------------------------------------- --------------------------------------- ---------------------------------------
5 0.3 0.4 0.5
10 0.1 0.2 NULL

(2 row(s) affected)
jiangshun 2009-11-20
  • 打赏
  • 举报
回复
..
dawugui 2009-11-20
  • 打赏
  • 举报
回复
select one T,
max(case two when A then three else '' end) [A],
max(case two when B then three else '' end) [B],
max(case two when C then three else '' end) [C]
from tb
group by T

select one T,
max(case two when A then three else 0 end) [A],
max(case two when B then three else 0 end) [B],
max(case two when C then three else 0 end) [C]
from tb
group by T
sgtzzc 2009-11-20
  • 打赏
  • 举报
回复
select one as T,
sum(case when two='A' then three else 0 end) as A,
sum(case when two='B' then three else 0 end) as B,
sum(case when two='C' then three else 0 end) as C
from tb
group by one

22,209

社区成员

发帖
与我相关
我的任务
社区描述
MS-SQL Server 疑难问题
社区管理员
  • 疑难问题社区
  • 尘觉
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧