Difference between revisions of "VbzCart/queries/qryStk byItem byBin"
Jump to navigation
Jump to search
(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/...) |
(used by v_stk_byItemAndBin_wInfo) |
||
Line 2: | Line 2: | ||
* '''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) | * '''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/query|v_stk_lines_remaining}} | * '''Requires''': {{vbzcart/query|v_stk_lines_remaining}} | ||
− | * '''Used by''': | + | * '''Used by''': {{vbzcart/query|v_stk_byItemAndBin_wInfo}} |
==SQL== | ==SQL== | ||
<section begin=sql /><mysql>CREATE OR REPLACE VIEW v_stk_byItemAndBin AS | <section begin=sql /><mysql>CREATE OR REPLACE VIEW v_stk_byItemAndBin AS |
Revision as of 01:00, 8 February 2009
Details
- Returns: Same records as
- REDIRECT Template:l/vc/query, but grouped by Item and Bin (so we have totals for each Item in each Bin)
- Requires: v_stk_lines_remaining
- Used by: v_stk_byItemAndBin_wInfo
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>