VbzCart/queries/qryRstkItms unsent

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:40, 5 December 2008 by Woozle (talk | contribs) (→‎SQL: oops, wrong name)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

About

  • Returns: items from restock requests which have not yet been submitted to the supplier
  • Requires:
  1. REDIRECT Template:l/vc/table,
  2. REDIRECT Template:l/vc/query
  • Used by:
  • History:
    • 2008-12-04 Created for new restock process

SQL

<mysql>CREATE OR REPLACE VIEW qryRstkItms_unsent AS SELECT

 rqi.*

FROM

 rstk_req_item AS rqi LEFT JOIN qryRstks_unsent AS rq ON rqi.ID_Restock=rq.ID;