Calculating the difference between result columns
От
Keith Worthington
Тема
Calculating the difference between result columns
Дата
Msg-id
20041227214615.M20847@narrowpathinc.com
Список
Дерево обсуждения
Calculating the difference between result columns "Keith Worthington" <keithw@narrowpathinc.com>
Re: Calculating the difference between result columns Tom Lane <tgl@sss.pgh.pa.us>
Re: Calculating the difference between result columns Sudamericano <sudamericano@gmail.com>
Hi All,
I'm stuck again. I have written two queries. The first calculates the total
quantity of items that have been ordered. The second calculates the total
quantity of items that have been received. Now I want to find the difference
which will tell me what is still on order. Any hints would be appreciated.
SELECT purchase_order.tbl_line_item.item_id,
sum( purchase_order.tbl_line_item.quantity ) AS ordered
FROM purchase_order.tbl_line_item
JOIN purchase_order.tbl_detail
USING (po_number)
WHERE NOT purchase_order.tbl_detail.closed
GROUP BY purchase_order.tbl_line_item.item_id;
SELECT purchase_order.tbl_line_item.item_id,
sum(purchase_order.tbl_receiving.quantity) AS received
FROM purchase_order.tbl_line_item
JOIN purchase_order.tbl_receiving
ON ( purchase_order.tbl_line_item.po_number =
purchase_order.tbl_receiving.po_number AND
purchase_order.tbl_line_item.po_line =
purchase_order.tbl_receiving.po_line )
JOIN purchase_order.tbl_detail
ON ( purchase_order.tbl_line_item.po_number =
purchase_order.tbl_detail.po_number)
WHERE NOT purchase_order.tbl_detail.closed
GROUP BY purchase_order.tbl_line_item.item_id;
Kind Regards,
Keith
______________________________________________
99main Internet Services http://www.99main.com
В списке pgsql-novice по дате отправления
От: Sukhdeep Johar
Дата: