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

SQL Server数据库动态交叉表的参考示例

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

SQL Server数据库动态交叉表的参考示例: –建立测试环境set nocount oncreate table test(model varchar(20),date int ,qty int)insert into test select 本文来源gao@daima#com搞(%代@#码网‘a’,’8′,’10’insert into test select ‘a’,’10’,’50’insert into test select ‘b’,’8′,’100’insert in

SQL Server数据库动态交叉表的参考示例:

–建立测试环境set nocount oncreate table test(model varchar(20),date int ,qty int)insert into test select ‘a’,’8′,’10’insert into test select ‘a’,’10’,’50’insert into test select ‘b’,’8′,’100’insert into test select ‘b’,’9′,’200’insert into test select ‘b’,’10’,’100’insert into test select ‘c’,’10’,’200’insert into test select ‘d’,’10’,’300’insert into test select ‘e’,’11’,’250’insert into test select ‘e’,’12’,’100’insert into test select ‘f’,’12’,’150’go–测试declare @sql varchar(8000)set @sql=’select model,’select @sql=@sql+’sum(case when date=”’+cast(date as varchar(10))+”’ then qty else 0 end)[‘+cast(date as varchar(10))+’],’from (select distinct top 100 percent  date from test order by date)aset @sql =left(@sql,len(@sql)-1)+’ from test group by model’exec(@sql)–删除测试环境drop table test set nocount off/**//*model                8           9           10          11          12——————– ———– ———– ———– ———– ———–a                    10          0           50          0           0b                    100         200         100         0           0c                    0           0           200         0           0d                    0           0           300         0           0e                    0           0           0           250         100f                    0           0           0           0           150*/
本文作者:


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

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

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

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