gpt4 book ai didi

.net - 在代码中执行结果集分组,而不是在数据库级别

转载 作者:行者123 更新时间:2023-12-01 10:14:25 25 4
gpt4 key购买 nike

白花,

我有一个 SQL 查询的结果集,形式如下:

Category  Column2   Column3
A 2 3.50
A 3 2
B 3 2
B 1 5
...

我需要根据“类别”列对结果集进行分组,并对 Column2 和 Column3 的值求和。我必须在代码中执行此操作,因为由于查询的复杂性(长话短说),我无法在获取数据的 SQL 查询中执行分组。然后,该分组数据将显示在表格中。

我让它适用于“类别”列中的特定值集,但我想要一个能够处理出现在“类别”列中的任何可能值的解决方案。

我知道必须有一种直接、有效的方法来做到这一点,但我现在无法全神贯注。你将如何完成它?

编辑

我曾尝试使用 Thomas Levesque 建议的完全相同的分组查询对 SQL 中的结果进行分组,但两次我们的整个 RDBMS 在尝试处理查询时都崩溃了。

我的印象是 Linq 直到 .NET 3.5 才可用。这是一个 .NET 2.0 Web 应用程序,所以我不认为这是一个选项。我的想法错了吗?

编辑

开始赏金,因为我相信无论不同的结果集来自何处,这都是工具箱中使用的好技术。我相信了解在代码中对任意 2 个相似数据集进行分组的最简洁方法(不使用 .NET LINQ)将对更多人有益,而不仅仅是我。

编辑

这是我在 VB.NET 中提出的解决方案,以备不时之需。它使用 Paul Williams 的答案作为起点。我直接从数据读取器中获取值。:

Public Class Accumulator
Public sum1 As Integer
Public sum2 As Decimal
End Class

If IReader.HasRows Then
Dim grouping As New Dictionary(Of String, Accumulator)

Do While IReader.Read
Dim sum As New Accumulator

If grouping.ContainsKey(IReader.GetString(0)) Then
sum = grouping.Item(IReader.GetString(0))
Else
sum = New Accumulator
grouping.Item(IReader.GetString(0)) = sum
End If

sum.sum1+= IReader.GetInt32(1)
sum.sum2 += IReader.GetInt32(2)
Loop

For Each key As KeyValuePair(Of String, Accumulator) In grouping
"DO WHAT YOU NEED TO DO WITH THE VALUES HERE"
Next
End If

最佳答案

I cannot perform the grouping in the SQL query that gets the data due to the complexity of the query (long story)

你确定吗?你只需要在你的复杂查询周围放置一个 SELECT ... GROUP BY ... 语句:

SELECT Category, SUM(Column2), SUM(Column3)
FROM ( /* your query here */ )
GROUP BY Category

无论如何,如果你真的想用代码来做,最简单的方法就是使用 Linq。假设结果存储在对象列表中:

var groupedByCategory =
from r in results
group r by r.Category into g
select new
{
Category = g.Key,
SumOfColumn2 = g.Sum(x => x.Column2),
SumOfColumn3 = g.Sum(x => x.Column3)
};

更新

I have attempted to group the result in SQL using the exact same grouping query suggested by Thomas Levesque and both times our entire RDBMS crashed trying to process the query.

呃...您使用的是哪个 DBMS?只是为了确保我不会意外使用它;)

I was under the impression that Linq was not available until .NET 3.5. This is a .NET 2.0 web application so I did not think it was an option. Am I wrong in thinking that?

不,你是对的。 Linq 随 .NET 3.5 一起提供,在早期版本中不可用。

但是,如果您碰巧使用 VS2008 构建面向 .NET 2.0 的应用程序,您可能会对 LinqBridge 感兴趣:它是标准 Linq 运算符的替代实现,它不取决于.NET 3.5。你只需要一个 C# 3 编译器(VS2008 自带)

关于.net - 在代码中执行结果集分组,而不是在数据库级别,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2625831/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com