我在MySql中有两个表:
主要:
and_fakture
栏位:id,organizatorId,...
第二:
and_stavke
字段:id,idFakture,ukupno,...
其中and_fakture.id = and_stavke.idFakture
ukupno是数字
我如何从organizatorId中求和(ukupno)?
最佳答案
您的问题不是很清楚,但是您想要这样吗?:
SELECT organizatorId, SUM(ukupno)
FROM and_fakture
INNER JOIN and_stavke ON and_fakture.id = and_stavke.idFakture
GROUP BY organizatorId
这将为您提供每个OrganizatorId的ukupno总和
关于mysql - MySql-从主表和第二表创建总和,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/26487176/