给定以下列表:
[
('A', '', Decimal('4.0000000000'), 1330, datetime.datetime(2012, 6, 8, 0, 0)),
('B', '', Decimal('31.0000000000'), 1330, datetime.datetime(2012, 6, 4, 0, 0)),
('AA', 'C', Decimal('31.0000000000'), 1330, datetime.datetime(2012, 5, 31, 0, 0)),
('B', '', Decimal('7.0000000000'), 1330, datetime.datetime(2012, 5, 24, 0, 0)),
('A', '', Decimal('21.0000000000'), 1330, datetime.datetime(2012, 5, 14, 0, 0))
]
我想按元组中的第一列、第二列、第四列和第五列对这些进行分组,并对第三列求和。对于此示例,我将列命名为 col1、col2、col3、col4、col5。
在 SQL 中,我会做这样的事情:
select col1, col2, sum(col3), col4, col5 from my table
group by col1, col2, col4, col5
有没有一种“酷”的方式来做到这一点,或者这一切都是手动循环?