我正在尝试获取每个保单的 net_insurance 的最后一个值,并按 type_money 求和
|policies|
|id| |policy_num| |type_money|
1 1234 1
2 5678 1
3 3444 2
4 4577 2
|insurances|
|id| |policy_id| |net_insurance|
1 1 100
2 1 200
3 1 400
4 2 500
5 2 600
6 3 100
7 4 200
在这里,我试图获得最后一个值
semi result bedore to do the sum
|policy_num| |type_money| |last_net_insurance|
1234 1 400
5678 1 600
3444 2 100
4577 2 200
得到最后一个值后,我想用 type_money 求和,这就是我真正需要的
|type money| |sum|
1 1000
2 300
我试过了,但我不知道如何获得每个保单的最后一个 net_insurance 并做一个总和
select * from policies
inner join insurances ON (insurances.policy_id =policies.id)
group by policies.id
这是我正在执行此操作的页面