• 欢迎访问搞代码网站,推荐使用最新版火狐浏览器和Chrome浏览器访问本网站!
  • 如果您觉得本站非常有看点,那么赶紧使用Ctrl+D 收藏搞代码吧

SQL Server 行与列之间转换

mysql 搞代码 4年前 (2022-01-09) 20次浏览 已收录 0个评论

SQL Server把行转列: 如以下表: 当表中只有少量数据时,可以采用静态SQL语句 如: select stuName , max(case Course when ‘语文’ then score else 0 end) as 语文, max(case Course when ‘数学’ then score else 0 end) as本文来源gaodaimacom搞#代%码@网- 数学, max(case Course when ‘

<link href=”/js/syntaxhighlighter/common2_cnblogs.css” rel=”stylesheet” type=”text/css” />

SQL Server把行转列:

如以下表:

当表中只有少量数据时,可以采用静态SQL语句

如:

select stuName ,
max(case Course when ‘语文’ then score else 0 end) as 语文,
max(case Course when ‘数学’ then score else 0 end) as 数学,
max(case Course when ‘英语’ then score else 0 end) as 英语,
max(case Course when ‘物理’ then score else 0 end) as 物理,
sum(score) as ‘总分’
from Student group by stuName

当数据表中有大量数据,就必须采用动态SQL语句了

如下操作:

declare @name varchar(8000) –声明变量
set @name = ‘select stuName ‘
select @name = @name + ‘ , sum(case Course when ”’ + Course + ”’ then score else 0 end) [‘ + Course + ‘]’
from (select distinct Course from Student) as a
set @name = @name + ‘ from Student group by stuName’
exec(@name)

其中distinct这个关键字用来过滤掉多余的重复记录只保留一条,但往往只用它来返回不重复记录的条数,而不是用它来返回不重记录的所有值

以上两个结果是一样的,结果如下:


搞代码网(gaodaima.com)提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发送到邮箱[email protected],我们会在看到邮件的第一时间内为您处理,或直接联系QQ:872152909。本网站采用BY-NC-SA协议进行授权
转载请注明原文链接:SQL Server 行与列之间转换

喜欢 (0)
[搞代码]
分享 (0)
发表我的评论
取消评论

表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址