首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > SQL Server >

还是行列转换有关问题

2012-01-15 
还是行列转换问题SQL code行列转换的得到的表,怎么和其他表组成试图库存:仓库物料数量CK1WL110CK2WL220CK1

还是行列转换问题

SQL code
行列转换的得到的表,怎么和其他表组成试图库存:仓库      物料      数量CK1      WL1      10CK2      WL2      20CK1      WL2      30行列转换的得到的表:物料      CK1       CK2WL1      10         0WL2      30         20  还有个表有(产品和物料两个字段)产品      物料CP1      WL1CP1      WL2要得到:产品      物料    CK1    CK2CP1      WL1     10     0CP1      WL2     30     20


[解决办法]
在执行前和相关的表进行关联就可以.
[解决办法]
select 还有个表.产品,行列转换的得到的表.*
from 还有个表,行列转换的得到的表
where 还有个表.物料=行列转换的得到的表.物料
[解决办法]
SQL code
/*标题:普通行列转换(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 tbgroup 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 aset @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 课程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 tbgroup 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 aset @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 姓名) nwhere 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 姓名) nwhere 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) torder 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 ascexec(@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) torder by 姓名 , case 课程 when '语文' then 1 when '数学' then 2 when '物理' then 3 when '平均分' then 4 when '总分' then 5 enddrop table tb 


[解决办法]

SQL code
create table tb1(仓库 varchar(10),物料 varchar(10),数量 int)insert into tb1 select 'CK1'   ,   'WL1'  ,    10insert into tb1 select 'CK2'   ,   'WL2'  ,    20insert into tb1 select 'CK1'   ,   'WL2'  ,    30create table tb2(产品 varchar(10),物料 varchar(10))insert into tb2 select 'CP1'   ,   'WL1'insert into tb2 select 'CP1'   ,   'WL2'declare @sql varchar(8000)set @sql='select b.产品,b.物料'select @sql=@sql+',sum(case when a.仓库='''+仓库+''' then a.数量 else 0 end) ['+仓库+']'from (select distinct 仓库 from tb1) texec (@sql+' from tb1 a,tb2 b where a.物料=b.物料 group by b.产品,b.物料')drop table tb1,tb2/*产品         物料         CK1         CK2         ---------- ---------- ----------- ----------- CP1        WL1        10          0CP1        WL2        30          20*/
[解决办法]
create table 库存(仓库 varchar(10),物料 varchar(10),数量 int)
insert 库存 select 'CK1','WL1',10
insert 库存 select 'CK2','WL2',20
insert 库存 select 'CK1','WL2',30
create table a(产品 varchar(10),物料 varchar(10))
insert a select 'CP1','WL1'
insert a select 'CP1','WL2'
declare @s varchar(8000)
set @s='select 产品,a.物料'
select @s=@s+','+仓库+'=sum(case 仓库 when '''+仓库+''' then 数量 else 0 end)' from 库存 group by 仓库
select @s=@s+' from 库存 a,a b where a.物料=b.物料 group by 产品,a.物料'
exec(@s)
[解决办法]
SQL code
create table tb1(仓库 varchar(10),物料 varchar(10),数量 int)insert into tb1 select 'CK1'   ,   'WL1'  ,    10insert into tb1 select 'CK2'   ,   'WL2'  ,    20insert into tb1 select 'CK1'   ,   'WL2'  ,    30create table tb2(产品 varchar(10),物料 varchar(10))insert into tb2 select 'CP1'   ,   'WL1'insert into tb2 select 'CP1'   ,   'WL2'declare @sql varchar(8000)set @sql='select a.产品,a.物料'select @sql=@sql+',['+仓库+']=sum(case 仓库 when '''+仓库+''' then 数量 else 0 end)' from (select distinct 仓库 from tb1)aset @sql=@sql+' from tb2 a left join tb1 b on a.物料=b.物料 group by a.产品,a.物料'exec(@sql) 

热点排行