VbzCart/queries/qryStk byItem byBin: Difference between revisions

from HTYP, the free directory anyone can edit if they can prove to me that they're not a spambot
No edit summary
(No difference)

Revision as of 13:38, 23 February 2010

Details

SQL

<section begin=sql /><mysql>CREATE OR REPLACE VIEW qryStk_byItem_byBin AS

 SELECT
   ID_Item,
   ID_Bin,
   SUM(QtyForSale) AS QtyForSale,
   SUM(QtyForShip) AS QtyForShip,
   SUM(QtyExisting) AS QtyExisting
 FROM qryStk_lines_remaining
 GROUP BY ID_Item, ID_Bin
 HAVING SUM(QtyExisting)>0;</mysql>

<section end=sql />