我想获取那些数量小于或等于零的总产品

时间:2015-11-02 11:36:01

标签: php mysql

我写了一个查询(见图片),显示结果,如下图所示。

现在,我想show那些product列表的总可用quantity小于或equal to zero

我正在使用此公式计算总可用数量 -

(SUM(credit_quantity) - SUM(debit_quantity))

请检查图像中显示的数据库表结构:

enter image description here

1 个答案:

答案 0 :(得分:0)

尝试此查询: -

SELECT * FROM nrk_product AS np LEFT JOIN 
nrk_stock AS ns ON np.id = ns.product_id GROUP BY np.id 
HAVING (SUM(ns.credit_quantity) - SUM(ns.debit_quantity)) <= 0