Difference between revisions of "VbzCart/queries/v stk titles remaining"

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 records as {{vbzcart/query|v_stk_lines_remaining}}, but grouped by Title * '''Requires''': {{vbzcart/query|v_stk_lines_remaining}}, {{vbzcart/query|cat_it...)
 
(No difference)

Latest revision as of 01:56, 4 December 2008

Details

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

SQL

<mysql>CREATE OR REPLACE VIEW v_stk_titles_remaining AS

 SELECT
   ID_Title,
   SUM(QtyForSale) AS QtyForSale,
   SUM(QtyForShip) AS QtyForShip,
   SUM(QtyExisting) AS QtyExisting
 FROM v_stk_lines_remaining AS s LEFT JOIN cat_items AS i ON s.ID_Item=i.ID
 GROUP BY i.ID_Title;</mysql>