[sql server] 问题总结9- 字符串拼接

来源:互联网 发布:虚拟充值退款淘宝介入 编辑:程序博客网 时间:2024/04/29 15:01

比如先想实现一个简单的
三条记录(或者更多条)
count price type
1 10 1
2 3 1
3 4 1
4 5 1
5 2 2
6 1 2

我想输出 最后的结果表达式 type1: (1*10)+(2*3)+(3*4)+(4*5)=48
type2: (5*2)+(6*1)=16

这个要怎么做才能分组显示出想要的字符串呢
------------------------

 

CREATE TABLE tb
(
    pid int,
    id int,
    [type] int
)
insert tb
select 1, 10, 1 union all
select 2, 3, 1 union all
select 3, 4, 1 union all
select 4, 5, 1 union all
select 5, 2, 2 union all
select 6, 1, 2
go

 

 

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

 

select   ltrim(SUM(pid*id))  from  tb group by  type

 select 'type'+ltrim([type])+stuff( (select '+('+ltrim(pid)+'*'+ltrim(id)+')' from tb where [type]=ta.[type]  for xml path('')),1,1,'')+'='+ltrim(SUM(pid*id)) as col
from tb as ta
 group  by  [type]

原创粉丝点击