VbzCart/docs/queries/qryStk byItem byBin

From Woozle Writes Code
< VbzCart‎ | docs‎ | queries
Revision as of 01:00, 8 February 2009 by imported>Woozle (used by v_stk_byItemAndBin_wInfo)
Jump to navigation Jump to search

Details

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 />