按数据表中的两列进行分组 列总和

发布于 2024-12-12 13:05:41 字数 626 浏览 0 评论 0原文

在下面的代码中,用于查找 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

帝王念 2024-12-19 13:05:41

您可以按匿名类型分组:

var result = from r in dt.AsEnumerable()
             group r by new { Group = r["Group"], Type = r["Type"] } into g
             select new { Group = g.Key.Group, 
                          Type = g.Key.Type, 
                          Sum = g.Sum(x => Convert.ToInt32(x["Rate"])) };

foreach (var r in result)
{
    Console.WriteLine("Group {0}, Type {1}, Sum {2}", r.Group, r.Type, r.Sum);
}

You can group by an anonymous type:

var result = from r in dt.AsEnumerable()
             group r by new { Group = r["Group"], Type = r["Type"] } into g
             select new { Group = g.Key.Group, 
                          Type = g.Key.Type, 
                          Sum = g.Sum(x => Convert.ToInt32(x["Rate"])) };

foreach (var r in result)
{
    Console.WriteLine("Group {0}, Type {1}, Sum {2}", r.Group, r.Type, r.Sum);
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文