VbzCart/queries/qryStk items remaining: Difference between revisions

from HTYP, the free directory anyone can edit if they can prove to me that they're not a spambot
New page: ==Details== * '''Returns''': Same records as {{vbzcart/query|v_stk_lines_remaining}}, but grouped by Item * '''Requires''': {{vbzcart/query|v_stk_lines_remaining}} * '''Used by''': ==SQL=...
 
(No difference)

Revision as of 23:08, 29 November 2009

Details

SQL

<section begin=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>

<section end=sql />