日期:2014-05-18  浏览次数:20436 次

一道面试的问题,想求答案~~~~~回答正确马上给分,谢谢了
今天去面试,有一道面试的题目没做出来,具体表结构记不太清楚了。
但是大概意思是,有一表,他里面的字段显示的内容有重复的~~~你要
查询出另外一表,把第一个表的重复字段变成列显示,求答案,有没有朋友也做过类似的题目啊,等于就是把一张表竖过来显示,内容边成字段~~~有做过的要是能把题目和答案都发出来就更好了,明天还要去面试我想把这个问题解决了,大家快点帮我下啊~~~~~~~~~~

------解决方案--------------------
if exists (select * from dbo.sysobjects
where id = object_id(N '[dbo].[p_zj] ') and OBJECTPROPERTY(id, N 'IsProcedure ') = 1)
drop procedure [dbo].[p_zj]
GO

/*--行列互换的通用存储过程 : 将指定的表,按指定的字段进行行列互换

--邹建 2004.04--

--使用示例

--测试数据
create table 表(类别 varchar(10),男性 decimal(20,1),女性 decimal(20,1))
insert 表 select '小说 ',38.0,59.2
union all select '散文 ',18.9,30.6
union all select '哲学 ',16.2,10.2

--要求转换结果
/*
性别 小说 散文 哲学
---- ----- ----- -----
男性 38.0 18.9 16.2
女性 59.2 30.6 10.2
*/

--调用存储过程
exec p_zj '表 ', '类别 ', '性别 '

--删除测试
drop table 表
*/

create proc p_zj
@tbname sysname, --要处理的表名
@fdname sysname, --做为转换的列名
@new_fdname sysname= ' ' --为转换后的列指定列名
as
declare @s1 varchar(8000),@s2 varchar(8000)
,@s3 varchar(8000),@s4 varchar(8000),@s5 varchar(8000)
,@i varchar(10)
select @s1= ' ',@s2= ' ',@s3= ' ',@s4= ' ',@s5= ' ',@i= '0 '
select @s1=@s1+ ',@ '+@i+ ' varchar(8000) '
,@s2=@s2+ ',@ '+@i+ '= ' ' '+case isnull(@new_fdname, ' ') when ' ' then ' '
else @new_fdname+ '= ' end+ ' ' ' ' ' '+name+ ' ' ' ' ' ' ' '
-- ,@s2=@s2+ ',@ '+@i+ '= ' '性别= ' ' ' ' '+name+ ' ' ' ' ' ' ' '
,@s3=@s3+ '
select @ '+@i+ '=@ '+@i+ '+ ' ',[ ' '+[ '+@fdname+ ']+ ' ']= ' '+cast([ '+name+ '] as varchar) from [ '+@tbname+ '] '
,@s4=@s4+ ',@ '+@i+ '= ' 'select ' '+@ '+@i
,@s5=@s5+ '+ ' ' union all ' '+@ '+@i
,@i=cast(@i as int)+1
from syscolumns
where object_id(@tbname)=id and name <> @fdname

select @s1=substring(@s1,2,8000)
,@s2=substring(@s2,2,8000)
,@s4=substring(@s4,2,8000)
,@s5=substring(@s5,16,8000)
exec( 'declare '+@s1+ '
select '+@s2+@s3+ '
select '+@s4+ '
exec( '+@s5+ ') ')
go
------解决方案--------------------
是不是行列转换?


這個是魚兄寫的,我給你看看


--創建測試環境
Create Table tabl1
(ID Int,
[Date] Varchar(10),
col1 Int,
col2 Int)
Insert tabl1 Select 1, '2007-1-1 ', 111, 222
Union All Select 2, '2007-2-1 ', 234, 245
Union All Select 3, '2007-3-1 ', 456, 367

Create Table tabl2
(ID Int,
Name Varchar(10),
[Date] Varchar(10),
value Int)
Insert tabl2 Select 1, 'aaa ', '2007-1-1 ', 345
Union All Select 2, 'bbb ', '2007-1-1 ', 245
Union All Select 3, 'ccc ', '2007-1-1 ', 223
Union All Select 4, 'ddd ', '2007-1-1 ', 355
Union All Select 1, 'aaa ', '2007-2-1 ', 423
Union All Select 2, 'bbb ', '2007-2-1 ', 345
Union All Select 3, 'ccc ', '2007-2-1 ', 568
Union All Select 4, '