VbzCart/queries/qryStk byItem byBin wInfo

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 02:05, 25 April 2009 by Woozle (talk | contribs) (about: 2 tables also required)
Jump to navigation Jump to search

About

  1. REDIRECT Template:l/vc/query, qryCat_Items
  • Used by: qryStock_forOpenOrders
  • History:
    • 2009-02-07 Added p.Descr so "stock needed for orders" can show where bins are

SQL

<mysql>CREATE OR REPLACE VIEW v_stk_byItemAndBin_wInfo AS

 SELECT
   s.*,
   i.*,
   b.ID_Place,
   b.Code AS BinCode,
   b.Descr AS BinDescr,
   p.Descr AS PlcDescr
 FROM
 ((
     v_stk_byItemAndBin AS s LEFT JOIN qryCat_Items AS i ON s.ID_Item=i.ID
   ) LEFT JOIN stk_bins AS b ON s.ID_Bin=b.ID
 ) LEFT JOIN stk_places AS p ON b.ID_Place=p.ID;</mysql>