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
Details
- Returns: Same records as qryStk_lines_remaining, but grouped by Item
- Requires: qryStk_lines_remaining
- Used by: qryCat_Items_Stock, Upd_TitleIttyps_fr_CatItems_Titles
- History:
- 2009-11-29 Renamed from v_stk_items_remaining to qryStk_items_remaining; also underlying query renamed
SQL
<section begin=sql /><mysql>CREATE OR REPLACE VIEW qryStk_items_remaining AS
SELECT ID_Item, SUM(QtyForSale) AS QtyForSale, SUM(QtyForShip) AS QtyForShip, SUM(QtyExisting) AS QtyExisting FROM qryStk_lines_remaining GROUP BY ID_Item;</mysql>
<section end=sql />
