繁体   English   中英

mysql中的列总和(本身就是总和)?

[英]sum of a column (which is itself a sum) in mysql?

基本上,我有以下查询:

SELECT 

sr.name AS salesrepname,
ct.name AS customertypename,
c.name AS customername,
c.code,
p.description AS productname,
p.unitofmeasure,
SUM(col.vatableprice) AS totalsales,
SUM(col.vatprice) AS vat, 
SUM(col.quantity) AS totalitems, 
SUM(col.quantity * col.costprice) AS totalsalecost,
SUM(col.vatableprice) - SUM(col.quantity * col.costprice) AS totalprofit ,


(SELECT SUM(col2.vatableprice) AS totalsales FROM customerorders AS co2 
LEFT JOIN customerorderlines AS col2 ON col2.customerorder_id = co2.id
LEFT JOIN customers AS c2 ON c2.id = co2.customer_id
LEFT JOIN locations AS l2 ON l2.id = c2.location_id 
LEFT JOIN customertypes AS ct2 ON ct2.id = c2.customertype_id 
LEFT JOIN salesreps AS sr2 ON sr2.id = c2.salesrep_id 
LEFT JOIN products AS p2 ON p2.id = col2.product_id 
LEFT JOIN suppliers AS s2 ON s2.id = p2.supplier_id 
WHERE c.id = c2.id AND co2.type = 2 
AND c2.salesrep_id = 20 AND p2.supplier_id = 67 
AND co2.orderdate >= '2010-01-01 00:00:00'
AND co2.orderdate <= '2010-08-31 23:59:59') AS credits ,

(SELECT SUM(col2.vatprice) AS totalvat FROM customerorders AS co2 
LEFT JOIN customerorderlines AS col2 ON col2.customerorder_id = co2.id 
LEFT JOIN customers AS c2 ON c2.id = co2.customer_id 
LEFT JOIN locations AS l2 ON l2.id = c2.location_id 
LEFT JOIN customertypes AS ct2 ON ct2.id = c2.customertype_id 
LEFT JOIN salesreps AS sr2 ON sr2.id = c2.salesrep_id 
LEFT JOIN products AS p2 ON p2.id = col2.product_id 
LEFT JOIN suppliers AS s2 ON s2.id = p2.supplier_id 
WHERE c.id = c2.id AND co2.type = 2 
AND c2.salesrep_id = 20 
AND p2.supplier_id = 67
AND co2.orderdate >= '2010-01-01 00:00:00' 
AND co2.orderdate <= '2010-08-31 23:59:59') AS creditsvat ,

(SELECT SUM(col2.quantity * col2.costprice) AS totalcreditcost 
FROM customerorders AS co2 
LEFT JOIN customerorderlines AS col2 ON col2.customerorder_id = co2.id 
LEFT JOIN customers AS c2 ON c2.id = co2.customer_id 
LEFT JOIN locations AS l2 ON l2.id = c2.location_id 
LEFT JOIN customertypes AS ct2 ON ct2.id = c2.customertype_id 
LEFT JOIN salesreps AS sr2 ON sr2.id = c2.salesrep_id 
LEFT JOIN products AS p2 ON p2.id = col2.product_id 
LEFT JOIN suppliers AS s2 ON s2.id = p2.supplier_id 
WHERE c.id = c2.id AND co2.type = 2 
AND c2.salesrep_id = 20 
AND p2.supplier_id = 67 
AND co2.orderdate >= '2010-01-01 00:00:00' 
AND co2.orderdate <= '2010-08-31 23:59:59') 
AS totalcreditcost

FROM customerorders AS co 
LEFT JOIN customerorderlines AS col ON col.customerorder_id = co.id
LEFT JOIN customers AS c ON c.id = co.customer_id 
LEFT JOIN locations AS l ON l.id = c.location_id 
LEFT JOIN customertypes AS ct ON ct.id = c.customertype_id 
LEFT JOIN salesreps AS sr ON sr.id = c.salesrep_id 
LEFT JOIN products AS p ON p.id = col.product_id
LEFT JOIN suppliers AS s ON s.id = p.supplier_id 
WHERE co.status_v = 5 
AND co.type = 1
AND c.salesrep_id = 20 AND p.supplier_id = 67
AND co.orderdate >= '2010-01-01 00:00:00'
AND co.orderdate <= '2010-08-31 23:59:59'
GROUP BY c.id 
ORDER BY customername

我要实现的是字段别名的totalitems的总和,它本身是col.quantity的总和。

如果您需要更多详细信息,请告诉我。

提前致谢。

您可以使用INTO关键字将第一个表保存到临时表中。 然后,像在其余查询中一样执行SUM(totalitems)

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM