VbzCart/queries/qryItms open

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

Details

  • Returns: Same rows as qryOrdItms_open but GROUPed by ID_Item
  • Requires: qryOrdItms_open
  • Used by:
  • History:
    • 2008-11-18 created for new restocking process

SQL

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

 ID_Item,
 SUM(oio.QtyOrd) AS QtyOrd,
 SUM(oio.QtySent) AS QtySent,
 SUM(oio.QtyDone) AS QtyDone,
 SUM(oio.QtyOpen) AS QtyOpen

FROM qryOrdItms_open AS oio GROUP BY ID_Item;</mysql> <section end=sql />