如何让Datagrid 中的某行 实现合计
Eg:
现在
A 1 3 5
A 2 3 1
A 1 1 1
B 1 1 1
B 2 2 2
想要成为:下表:
A 1 3 5
A 2 3 1
A 1 1 1
合计 4 7 7
B 1 1 1
B 2 2 2
合计 3 3 3
个人初步思路是让SQL写 但不知道怎么写!菜鸟求救高手!
[解决办法]
select 'id ', fkid,money from b union select '合计 ' ,fkid,sum(money) as age from b group by fkid order by fkid
---把count改为sum
[解决办法]
看看這個結果符合你的要求。
我在每個合計的名稱前加上了第一列的名稱。
--建立測試環境
Create Table TEST
(Col1Varchar(10),
Col2Int,
Col3Int,
Col4Int)
Insert TEST Select 'A ', 1, 3, 5
Union All Select 'A ', 2, 3, 1
Union All Select 'A ', 1, 1, 1
Union All Select 'B ', 1, 1, 1
Union All Select 'B ', 2, 2, 2
GO
--測試
Select * From TEST
Union
Select
Col1 + N '合计 ',
SUM(Col2) As Col2,
SUM(Col3) As Col3,
SUM(Col4) As Col4
From TEST
Group By Col1
--刪除測試環境
Drop Table TEST
--結果
/*
Col1Col2Col3Col4
A111
A135
A231
A合计477
B111
B222
B合计333
*/