VbzCart/queries/qryStock Titles most recent

from HTYP, the free directory anyone can edit if they can prove to me that they're not a spambot
Revision as of 02:36, 4 December 2008 by Woozle (talk | contribs) (New page: ==Details== * '''Requires''': {{vbzcart/query|v_stk_lines_remaining}}, {{vbzcart/table|cat_items}}, {{vbzcart/query|v_stk_titles_remaining}} * '''Used by''': This defines what the "latest ...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Details

SQL

<section begin=sql /><mysql>CREATE OR REPLACE VIEW qryStock_Titles_most_recent AS SELECT

 i.ID_Title,
 s.QtyForSale AS QtyAdded,
 MAX(s.WhenAdded) AS WhenAdded,
 st.QtyForSale AS QtyAvail

FROM (v_stk_lines_remaining AS s LEFT JOIN cat_items AS i ON s.ID_Item=i.ID) LEFT JOIN v_stk_titles_remaining AS st ON i.ID_Title=st.ID_Title GROUP BY i.ID_Title HAVING QtyAdded ORDER BY WhenAdded DESC LIMIT 100;</mysql> <section end=sql />