Difference between revisions of "VbzCart/queries/qryItms open"

from HTYP, the free directory anyone can edit if they can prove to me that they're not a spambot
Jump to navigation Jump to search
(New page: ==Details== * '''Returns''': Same rows as {{vbzcart/query|qryOrdItms_open}} but GROUPed by ID_Item * '''Requires''': {{vbzcart/query|qryOrdItms_open}} * '''Used by''': * '''History''': ** ...)
 
(No difference)

Latest revision as of 21:25, 3 December 2008

Details

  • Returns: Same rows as
  1. REDIRECT Template:l/vc/query but GROUPed by ID_Item
  • Requires: qryOrdItms_open
  • Used by:
  • History:
    • 2008-11-18 created for new restocking process

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>