按数据表中的两列进行分组 列总和
在下面的代码中,用于查找 DataTable dt 中的 Rate 列的总和:
dt.Compute("Sum(Convert(Rate, 'System.Int32'))");
在此,可以像 SQL Inn 那样分配 group by 子句,以便根据同一 dt Fo 的另一列中的值获取 Sum,例如:
----------------------------
Rate | Group |type
----------------------------
100 | A | 1
120 | B | 2
70 | A | 1
50 | A | 2
----------------------------
我只想得到。
Sum A=170(type-1) SUMA=50(type-2) an Sum B=120(type-2)
参考:我在上一个问题的单列案例中得到了答案 按数据表列总和分组。
In the following code for finding sum of Rate column in the DataTable dt:
dt.Compute("Sum(Convert(Rate, 'System.Int32'))");
In this is it possible to assign group by clause like SQL Inn order to get Sum based on a value in another column of the same dt Fo eg:
----------------------------
Rate | Group |type
----------------------------
100 | A | 1
120 | B | 2
70 | A | 1
50 | A | 2
----------------------------
I just wanna to get.
Sum A=170(type-1) SUMA=50(type-2) an Sum B=120(type-2)
Ref: I got ans in my previous question in single column case
Group by in DataTable Column sum.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以按匿名类型分组:
You can group by an anonymous type: