VbzCart/docs/procs/Upd Depts fr DeptIttyps
Jump to navigation
Jump to search
About
- Purpose: Updates some fields in Template:Vbzcart after that has been filled in by Template:Vbzcart
- Input: Template:Vbzcart/query (group by ID_Dept)
- Output: Template:Vbzcart (update)
- History:
- 2010-11-10
- Added DROP PROCEDURE for easier maintenance.
- Created in database (procs were not ported from L48 to Rizzo).
- 2011-12-24 this was in a long recursive loop: this → Template:Vbzcart → Template:Vbzcart → Template:Vbzcart → Template:Vbzcart → Template:Vbzcart → Template:Vbzcart → Template:Vbzcart → this, so replacing source Template:Vbzcart with Template:Vbzcart/query
- 2010-11-10
SQL
<section begin=sql /><mysql>DROP PROCEDURE IF EXISTS Upd_Depts_fr_DeptIttyps; CREATE PROCEDURE Upd_Depts_fr_DeptIttyps()
UPDATE _depts AS d LEFT JOIN ( SELECT ID_Dept, SUM(di.cntForSale) AS cntForSale, SUM(di.cntInPrint) AS cntInPrint, SUM(di.qtyForSale) AS qtyInStock FROM qryCat_Titles_Item_stats AS di GROUP BY ID_Dept ) AS di ON di.ID_Dept=d.ID SET d.cntForSale = di.cntForSale, d.cntInPrint = di.cntInPrint, d.qtyInStock = di.qtyInStock;</mysql>
<section end=sql />