VbzCart/queries/qryStk byItem byBin

from HTYP, the free directory anyone can edit if they can prove to me that they're not a spambot
< VbzCart‎ | queries
Revision as of 01:00, 8 February 2009 by Woozle (talk | contribs) (used by v_stk_byItemAndBin_wInfo)
Jump to navigation Jump to search

Details

  • Returns: Same records as
  1. REDIRECT Template:l/vc/query, but grouped by Item and Bin (so we have totals for each Item in each Bin)

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>