SP to calc shipments vs receipts - Mailing list pgsql-general

From Bret Stern
Subject SP to calc shipments vs receipts
Date
Msg-id 1379999589.7123.9.camel@centos-dev.machinemanagement.com
Whole thread Raw
Responses Re: SP to calc shipments vs receipts  (John R Pierce <pierce@hogranch.com>)
List pgsql-general
I have an inventory transaction table with several fields,
specifically:
part_no
trans_type
trans_qty

part_no | trans_type | trans_qty
abc        REC    5000    (receipt)
abc        REC    400    (receipt)
abc        SHP    1000    (shipment)
abc        ALL    1000    (allocated)

Looking for the best way to show following totals with SQL

on_hand    |    allocated    | available
3400        1000                 4400

Thinking of writing a stored procedure that has the aggregate queries,
and returns the values defined above for this example.

Is this a recommended way?

B Stern







pgsql-general by date:

Previous
From: Karl Denninger
Date:
Subject: Re: streaming replication not working
Next
From: John R Pierce
Date:
Subject: Re: SP to calc shipments vs receipts