VbzCart/docs/queries/qryStk byItem byBin: Difference between revisions
Jump to navigation
Jump to search
imported>Woozle (New page: ==Details== * '''Returns''': Same records as {{vbzcart/query|v_stk_lines_remaining}}, but grouped by Item and Bin (so we have totals for each Item in each Bin) * '''Requires''': {{vbzcart/...) |
(No difference)
|
Revision as of 01:58, 4 December 2008
Details
- Returns: Same records as Template:Vbzcart/query, but grouped by Item and Bin (so we have totals for each Item in each Bin)
- Requires: Template:Vbzcart/query
- Used by:
SQL
<section begin=sql /><mysql>CREATE OR REPLACE VIEW v_stk_byItemAndBin AS
SELECT ID_Item, ID_Bin, SUM(QtyForSale) AS QtyForSale, SUM(QtyForShip) AS QtyForShip, SUM(QtyExisting) AS QtyExisting FROM v_stk_lines_remaining GROUP BY ID_Item, ID_Bin HAVING SUM(QtyExisting)>0;</mysql>
<section end=sql />