gpt4 book ai didi

mysql - 查询求和两列的问题

转载 作者:行者123 更新时间:2023-11-30 23:37:45 25 4
gpt4 key购买 nike

我有这个查询,一个包含 value1、value2 和其他列的表事务

var result = (from t in db.Transaction
group t by t.TransactionId into g
select new
{
Value1 = g.Sum(t => t.Value1 ),
Value2 = g.Sum(t => t.Value2 )
}).ToList();

我收到此错误:“字段列表”中的未知列“GroupBy1.K1”。

有什么想法吗?我正在使用 mysql 连接器。

最佳答案

您需要在创建的新对象中包含字段 t.TransactionId。

即使查询在没有此字段的情况下也有效,您仍需要此字段以使结果易于理解。

关于mysql - 查询求和两列的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6128011/

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