VbzCart/queries/qryStk items remaining

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 23:08, 29 November 2009 by Woozle (talk | contribs) (moved VbzCart/queries/v stk items remaining to VbzCart/queries/qryStk items remaining: time to rebuild this one too...)
Jump to navigation Jump to search

Details

  • Returns: Same records as
  1. REDIRECT Template:l/vc/query, but grouped by Item

SQL

<mysql>CREATE OR REPLACE VIEW v_stk_items_remaining AS

 SELECT
   ID_Item,
   SUM(QtyForSale) AS QtyForSale,
   SUM(QtyForShip) AS QtyForShip,
   SUM(QtyExisting) AS QtyExisting
 FROM v_stk_lines_remaining
 GROUP BY ID_Item;</mysql>