表格1:
ID Total1 Total2 Total3
1 10 0 20
1 40 0 50
1 15 0 5
表 2:
ID Total
1 140
如何累积添加所有行并在 table2 中找到匹配的总数?
我如何累积添加所有行并在 table2 中找到不匹配的总数并编写更新语句来更新(添加那些)并写入 table2?
select sum(t1.total1) + sum(t1.total2) +sum(t1.total3) as "Total" from
table t1, table t2 where t1.ID=t2.ID and sum(t1.total1) +
sum(t1.total2) +sum(t1.total3)=t2.total;
我无法正确获取更新语法。